jhj0517 commited on
Commit
cfcce3d
·
1 Parent(s): 3d6a684

Remove duplicates parameter

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -175,13 +175,13 @@ class App:
175
  temperature=sd_temperature, compression_ratio_threshold=nb_compression_ratio_threshold,
176
  vad_filter=cb_vad_filter, threshold=sd_threshold, min_speech_duration_ms=nb_min_speech_duration_ms,
177
  max_speech_duration_s=nb_max_speech_duration_s, min_silence_duration_ms=nb_min_silence_duration_ms,
178
- speech_pad_ms=nb_speech_pad_ms, chunk_length_s=nb_chunk_length_s, batch_size=nb_batch_size,
179
  is_diarize=cb_diarize, hf_token=tb_hf_token, diarization_device=dd_diarization_device,
180
  length_penalty=nb_length_penalty, repetition_penalty=nb_repetition_penalty,
181
  no_repeat_ngram_size=nb_no_repeat_ngram_size, prefix=tb_prefix, suppress_blank=cb_suppress_blank,
182
  suppress_tokens=tb_suppress_tokens, max_initial_timestamp=nb_max_initial_timestamp,
183
  word_timestamps=cb_word_timestamps, prepend_punctuations=tb_prepend_punctuations,
184
- append_punctuations=tb_append_punctuations, max_new_tokens=nb_max_new_tokens, chunk_length=nb_chunk_length,
185
  hallucination_silence_threshold=nb_hallucination_silence_threshold, hotwords=tb_hotwords,
186
  language_detection_threshold=nb_language_detection_threshold,
187
  language_detection_segments=nb_language_detection_segments,
 
175
  temperature=sd_temperature, compression_ratio_threshold=nb_compression_ratio_threshold,
176
  vad_filter=cb_vad_filter, threshold=sd_threshold, min_speech_duration_ms=nb_min_speech_duration_ms,
177
  max_speech_duration_s=nb_max_speech_duration_s, min_silence_duration_ms=nb_min_silence_duration_ms,
178
+ speech_pad_ms=nb_speech_pad_ms, chunk_length=nb_chunk_length, batch_size=nb_batch_size,
179
  is_diarize=cb_diarize, hf_token=tb_hf_token, diarization_device=dd_diarization_device,
180
  length_penalty=nb_length_penalty, repetition_penalty=nb_repetition_penalty,
181
  no_repeat_ngram_size=nb_no_repeat_ngram_size, prefix=tb_prefix, suppress_blank=cb_suppress_blank,
182
  suppress_tokens=tb_suppress_tokens, max_initial_timestamp=nb_max_initial_timestamp,
183
  word_timestamps=cb_word_timestamps, prepend_punctuations=tb_prepend_punctuations,
184
+ append_punctuations=tb_append_punctuations, max_new_tokens=nb_max_new_tokens,
185
  hallucination_silence_threshold=nb_hallucination_silence_threshold, hotwords=tb_hotwords,
186
  language_detection_threshold=nb_language_detection_threshold,
187
  language_detection_segments=nb_language_detection_segments,