delete examples
Browse files
app.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
import librosa
|
3 |
-
from asr import transcribe,
|
4 |
from tts import synthesize, TTS_EXAMPLES, TTS_LANGUAGES
|
5 |
from lid import identify, LID_EXAMPLES
|
6 |
|
@@ -18,7 +18,7 @@ mms_transcribe = gr.Interface(
|
|
18 |
gr.Textbox(label="Optional: Provide your own transcription"),
|
19 |
],
|
20 |
outputs="text",
|
21 |
-
examples=ASR_EXAMPLES,
|
22 |
title="Speech-to-text",
|
23 |
description=("Transcribe audio from a microphone or input file in your desired language."),
|
24 |
article=ASR_NOTE,
|
|
|
1 |
import gradio as gr
|
2 |
import librosa
|
3 |
+
from asr import transcribe, ASR_LANGUAGES, model
|
4 |
from tts import synthesize, TTS_EXAMPLES, TTS_LANGUAGES
|
5 |
from lid import identify, LID_EXAMPLES
|
6 |
|
|
|
18 |
gr.Textbox(label="Optional: Provide your own transcription"),
|
19 |
],
|
20 |
outputs="text",
|
21 |
+
#examples=ASR_EXAMPLES,
|
22 |
title="Speech-to-text",
|
23 |
description=("Transcribe audio from a microphone or input file in your desired language."),
|
24 |
article=ASR_NOTE,
|