Traceback (most recent call last):
File "C:\Users\averw\Desktop\repos\vocal-remover\inference.py", line 184, in <module>
main()
File "C:\Users\averw\Desktop\repos\vocal-remover\inference.py", line 152, in main y_spec, v_spec = sp.separate(X_spec)
File "C:\Users\averw\Desktop\repos\vocal-remover\inference.py", line 77, in separate
mask = self._separate(X_mag_pad, roi_size)
File "C:\Users\averw\Desktop\repos\vocal-remover\inference.py", line 42, in _separate
X_batch = torch.from_numpy(X_batch).to(self.device)
RuntimeError: Numpy is not available
why is this error happening in PyTorch? I have numpy 1.21.2 installed, and I have PyTorch Nightly with CUDA 11.3
python -c "import torch; import numpy as np; print(torch.from_numpy(np.random.randn(1)))"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'numpy'