asahi417 commited on
Commit
a41d73e
β€’
1 Parent(s): e33bf47

update readme

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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 Japanese 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,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 the OpenAI 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,8 +99,8 @@ yt_transcribe = gr.Interface(
99
  outputs=["html", "text"],
100
  layout="horizontal",
101
  theme="huggingface",
102
- title="Whisper Large V3: Transcribe YouTube",
103
- description=f"Transcribe long-form YouTube videos with the click of a button! Demo uses the OpenAI Whisper checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and πŸ€— Transformers to transcribe video files of arbitrary length.",
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