Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,5 @@ pipe = pipeline(task="automatic-speech-recognition",
|
|
4 |
model="openai/whisper-tiny")
|
5 |
gr.Interface.from_pipeline(pipe,
|
6 |
title="Automatic Speech Recognition (ASR)",
|
7 |
-
description="Using pipeline with OpenAI Whisper",
|
8 |
-
examples=['assets/ljspeech.wav',],
|
9 |
).launch(inbrowser=True)
|
|
|
4 |
model="openai/whisper-tiny")
|
5 |
gr.Interface.from_pipeline(pipe,
|
6 |
title="Automatic Speech Recognition (ASR)",
|
7 |
+
description="Using pipeline with OpenAI Whisper"],
|
|
|
8 |
).launch(inbrowser=True)
|