init
Browse files
app.py
CHANGED
|
@@ -91,7 +91,6 @@ mf_transcribe = gr.Interface(
|
|
| 91 |
title=title,
|
| 92 |
description=description,
|
| 93 |
allow_flagging="never",
|
| 94 |
-
examples=EXAMPLE
|
| 95 |
)
|
| 96 |
file_transcribe = gr.Interface(
|
| 97 |
fn=transcribe,
|
|
@@ -103,7 +102,6 @@ file_transcribe = gr.Interface(
|
|
| 103 |
title=title,
|
| 104 |
description=description,
|
| 105 |
allow_flagging="never",
|
| 106 |
-
examples=EXAMPLE
|
| 107 |
)
|
| 108 |
with demo:
|
| 109 |
gr.TabbedInterface([mf_transcribe, file_transcribe], ["Microphone", "Audio file"])
|
|
|
|
| 91 |
title=title,
|
| 92 |
description=description,
|
| 93 |
allow_flagging="never",
|
|
|
|
| 94 |
)
|
| 95 |
file_transcribe = gr.Interface(
|
| 96 |
fn=transcribe,
|
|
|
|
| 102 |
title=title,
|
| 103 |
description=description,
|
| 104 |
allow_flagging="never",
|
|
|
|
| 105 |
)
|
| 106 |
with demo:
|
| 107 |
gr.TabbedInterface([mf_transcribe, file_transcribe], ["Microphone", "Audio file"])
|