SpecAugment
SpecAugment copied to clipboard
spec_augment_pytorch has a bug
from SpecAugment.sparse_image_warp_zcaceres import sparse_image_warp ModuleNotFoundError: No module named 'SpecAugment
I also got the same problem.
I have the same problem too. Does anyone have any solution?
Edit: Seems like there is a typo in the library name. Please change SpecAugment
to specAugment
.
from SpecAugment import spec_augment_tensorflow
from SpecAugment import spec_augment_pytorch
to
from specAugment import spec_augment_tensorflow
from specAugment import spec_augment_pytorch
Looks like that have to change the 45th line in spec_augment_pytorch.py from SpecAugment.sparse_image_warp_zcaceres import sparse_image_warp -> from specAugment.sparse_image_warp_zcaceres import sparse_image_warp
Confirm: they have to change also the tests!!!
Is there any update on this issue? Or are there any alternatives w.r.t. SpecAugment? It seems like this project is not being actively maintained.