Spaces:
Runtime error
Runtime error
update readme
Browse files
app.py
CHANGED
|
@@ -79,7 +79,7 @@ mf_transcribe = gr.Interface(
|
|
| 79 |
layout="horizontal",
|
| 80 |
theme="huggingface",
|
| 81 |
title=f"Transcribe Audio with {os.path.basename(MODEL_NAME)}",
|
| 82 |
-
description=f"Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the
|
| 83 |
allow_flagging="never",
|
| 84 |
)
|
| 85 |
|
|
@@ -90,7 +90,7 @@ file_transcribe = gr.Interface(
|
|
| 90 |
layout="horizontal",
|
| 91 |
theme="huggingface",
|
| 92 |
title=f"Transcribe Audio with {os.path.basename(MODEL_NAME)}",
|
| 93 |
-
description=f"Transcribe long-form microphone or audio inputs with the click of a button! Demo uses
|
| 94 |
allow_flagging="never",
|
| 95 |
)
|
| 96 |
yt_transcribe = gr.Interface(
|
|
@@ -99,8 +99,8 @@ yt_transcribe = gr.Interface(
|
|
| 99 |
outputs=["html", "text"],
|
| 100 |
layout="horizontal",
|
| 101 |
theme="huggingface",
|
| 102 |
-
title="
|
| 103 |
-
description=f"Transcribe long-form YouTube videos with the click of a button! Demo uses
|
| 104 |
allow_flagging="never",
|
| 105 |
)
|
| 106 |
|
|
|
|
| 79 |
layout="horizontal",
|
| 80 |
theme="huggingface",
|
| 81 |
title=f"Transcribe Audio with {os.path.basename(MODEL_NAME)}",
|
| 82 |
+
description=f"Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the Kotoba-Whisper checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and π€ Transformers to transcribe audio files of arbitrary length.",
|
| 83 |
allow_flagging="never",
|
| 84 |
)
|
| 85 |
|
|
|
|
| 90 |
layout="horizontal",
|
| 91 |
theme="huggingface",
|
| 92 |
title=f"Transcribe Audio with {os.path.basename(MODEL_NAME)}",
|
| 93 |
+
description=f"Transcribe long-form microphone or audio inputs with the click of a button! Demo uses Kotoba-Whisper checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and π€ Transformers to transcribe audio files of arbitrary length.",
|
| 94 |
allow_flagging="never",
|
| 95 |
)
|
| 96 |
yt_transcribe = gr.Interface(
|
|
|
|
| 99 |
outputs=["html", "text"],
|
| 100 |
layout="horizontal",
|
| 101 |
theme="huggingface",
|
| 102 |
+
title=f"Transcribe YouTube with {os.path.basename(MODEL_NAME)}",
|
| 103 |
+
description=f"Transcribe long-form YouTube videos with the click of a button! Demo uses Kotoba-Whisper checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and π€ Transformers to transcribe video files of arbitrary length.",
|
| 104 |
allow_flagging="never",
|
| 105 |
)
|
| 106 |
|