Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -995,6 +995,13 @@ def transcribe_speech(filepath):
|
|
| 995 |
return output["text"]
|
| 996 |
|
| 997 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 998 |
mic_transcribe = gr.Interface(
|
| 999 |
fn=transcribe_speech,
|
| 1000 |
inputs=gr.Audio(sources="microphone", type="filepath"),
|
|
|
|
| 995 |
return output["text"]
|
| 996 |
|
| 997 |
|
| 998 |
+
title = "Automatic Speech Recognition (ASR)"
|
| 999 |
+
description = """
|
| 1000 |
+
Demo for automatic speech recognition in Greek. Demo uses [Sandiago21/whisper-large-v2-greek](https://huggingface.co/Sandiago21/whisper-large-v2-greek) checkpoint, which is based on OpenAI's
|
| 1001 |
+
[Whisper](https://huggingface.co/openai/whisper-large-v2) model and is fine-tuned in Greek Audio dataset
|
| 1002 |
+
")
|
| 1003 |
+
"""
|
| 1004 |
+
|
| 1005 |
mic_transcribe = gr.Interface(
|
| 1006 |
fn=transcribe_speech,
|
| 1007 |
inputs=gr.Audio(sources="microphone", type="filepath"),
|