Replies: 1 comment
-
solved the issue by setting the variable to the config.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I am trying to load Nemo model on cuda:1, but the issue is it loads the model but when I call the diarize function it stops the diarization at VAD,what could be the possible reason for this, here is how I am loading the model, thanks.
Note: when i check with nvidia-smi if the model is loaded at cuda:0 or cuda:1, it seems to be loaded at cuda:0, what could be the possible reason this?
msdd_model = ClusteringDiarizer(cfg=create_config(file_path)).to("cuda:1")
attached is the picture where nemo diarize() function stops,

If I change the above load model line to
msdd_model = ClusteringDiarizer(cfg=create_config(file_path)).to("cuda")
it runs perfectly, but i need it to be running on my 2nd GPU.Beta Was this translation helpful? Give feedback.
All reactions