You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RuntimeError:
Unknown builtin op: torchaudio_sox::apply_effects_tensor.
Could not find any similar ops to torchaudio_sox::apply_effects_tensor. This op may not exist or may not be currently supported in TorchScript.
:
File "code/__torch__/torchaudio/sox_effects/sox_effects.py", line 5
effects: List[List[str]],
channels_first: bool=True) -> Tuple[Tensor, int]:
_0, _1 = ops.torchaudio_sox.apply_effects_tensor(tensor, sample_rate, effects, channels_first)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <--- HERE
return (_0, _1)
'apply_effects_tensor' is being compiled since it was called from 'SoxEffects.forward'
Serialized File "code/__torch__/data/wav2mel.py", line 33
wav_tensor: Tensor,
sample_rate: int) -> Tensor:
_0 = __torch__.torchaudio.sox_effects.sox_effects.apply_effects_tensor
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <--- HERE
effects = self.effects
_1 = _0(wav_tensor, sample_rate, effects, True, )
The text was updated successfully, but these errors were encountered:
installing libsox-dev: sudo apt-get install libsox-dev and then
not loading the wav2mel module from a torchscript checkpoint but just importing the python code (you'll need the dependencies used in that script like torch and torchaudio installed then). E.g. for visualize.py, I replaced
Running visualize("preprocessed", "preprocessed/wav2mel.pt", "dvector-step5000.pt", ".")
Getting the following error while torch.jit.load
The text was updated successfully, but these errors were encountered: