spleeter-pytorch
spleeter-pytorch copied to clipboard
Spleeter implementation in pytorch
Removed unused imports, some code cleanup, added requirements.txt, renamed `test_estimator.py` to `run_estimator.py` Updated for Python3.8 Tested with test audio file.
1、bn: `nn.BatchNorm2d(out_channels, eps=1e-3, momentum=0.01)` 2、padding:left top first in pytorch,right bottom first in tensorflow or keras `class Conv2dKeras(nn.Conv2d): def __init__(self, in_channels, out_channels, kernel_size, stride=1, padding='same', dilation=1, groups=1, bias=True, padding_mode='zeros'): super(Conv2dKeras, self).__init__(...