tykiww commited on
Commit
dee336f
1 Parent(s): 70762cf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,7 +27,7 @@ def process_meeting(audio_input, num_speakers, speaker_names):
27
 
28
  # Finally, Clean up the docs.
29
  output = pipeline(audio_input,
30
- diarization_num_speakers = num_speakers)
31
  print(output)
32
  return "a", None #diarization_result, label_file
33
 
 
27
 
28
  # Finally, Clean up the docs.
29
  output = pipeline(audio_input,
30
+ num_speakers = num_speakers)
31
  print(output)
32
  return "a", None #diarization_result, label_file
33