sanchit-gandhi HF staff commited on
Commit
36dc535
β€’
1 Parent(s): d72c448

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -87,6 +87,11 @@ file_transcribe = gr.Interface(
87
  f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and πŸ€— Transformers to transcribe audio files"
88
  " of arbitrary length."
89
  ),
 
 
 
 
 
90
  allow_flagging="never",
91
  )
92
 
 
87
  f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and πŸ€— Transformers to transcribe audio files"
88
  " of arbitrary length."
89
  ),
90
+ examples=[
91
+ ["./example.flac", "transcribe", False],
92
+ ["./example.flac", "transcribe", True],
93
+ ],
94
+ cache_examples=True,
95
  allow_flagging="never",
96
  )
97