razhan commited on
Commit
6f97888
·
verified ·
1 Parent(s): 9f7c1ce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -274,7 +274,7 @@ mf_transcribe = gr.Interface(
274
  f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
275
  " of arbitrary length."
276
  ),
277
- allow_flagging="never",
278
  )
279
 
280
  file_transcribe = gr.Interface(
@@ -290,7 +290,7 @@ file_transcribe = gr.Interface(
290
  f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
291
  " of arbitrary length."
292
  ),
293
- allow_flagging="never",
294
  )
295
 
296
  yt_transcribe = gr.Interface(
@@ -306,7 +306,7 @@ yt_transcribe = gr.Interface(
306
  f" [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe video files of"
307
  " arbitrary length."
308
  ),
309
- allow_flagging="never",
310
  )
311
 
312
  with demo:
 
274
  f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
275
  " of arbitrary length."
276
  ),
277
+ flagging_mode="never",
278
  )
279
 
280
  file_transcribe = gr.Interface(
 
290
  f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
291
  " of arbitrary length."
292
  ),
293
+ flagging_mode="never",
294
  )
295
 
296
  yt_transcribe = gr.Interface(
 
306
  f" [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe video files of"
307
  " arbitrary length."
308
  ),
309
+ flagging_mode="never",
310
  )
311
 
312
  with demo: