Spaces:
Runtime error
Runtime error
Commit
•
36dc535
1
Parent(s):
d72c448
Update app.py
Browse files
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 |
|