Luigi commited on
Commit
ac0d0ca
·
1 Parent(s): 9e56b98

force cpu spk diaraization

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -101,6 +101,8 @@ def get_diarization_pipe():
101
  "pyannote/[email protected]",
102
  use_auth_token=token or True
103
  )
 
 
104
  return dar_pipe
105
 
106
 
 
101
  "pyannote/[email protected]",
102
  use_auth_token=token or True
103
  )
104
+
105
+ dar_pipe.to("cpu")
106
  return dar_pipe
107
 
108