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
I tried to use the NeuralDiarizer class with one audio. However, I got an error related to signal and I am sure if it is related to my environment or in the Nemo toolkit.
Steps/Code to reproduce bug
from nemo.collections.asr.models import NeuralDiarizer
model = NeuralDiarizer.from_pretrained(model_name="diar_msdd_meeting", map_location="gpu")
fp = "./audio.wav"
if __name__ == "__main__":
res = model(audio_filepath=fp)
print(res)
Expected behavior
I was not sure with the result because it is my first use of Nemo.
I got the following error:
AttributeError: module 'signal' has no attribute 'SIGKILL'. Did you mean: 'SIGILL'?
Environment overview
Environment location: Bare-metal
Method of NeMo install: [uv add nemo_toolkit['asr']].
Environment details
Os Version: Windows 11
PyTorch version: 2.6.0+cu124
Python version: Pyton 3.10.11
The text was updated successfully, but these errors were encountered:
Describe the bug
I tried to use the
NeuralDiarizer
class with one audio. However, I got an error related tosignal
and I am sure if it is related to my environment or in the Nemo toolkit.Steps/Code to reproduce bug
Expected behavior
I was not sure with the result because it is my first use of Nemo.
I got the following error:
Environment overview
Environment details
The text was updated successfully, but these errors were encountered: