Sangmin commited on
Commit
1c2d1e8
1 Parent(s): 18ea2dd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -128,6 +128,8 @@ mf_transcribe = gr.Interface(
128
  "Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the"
129
  f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
130
  " of arbitrary length."
 
 
131
  ),
132
  allow_flagging="never",
133
  )
@@ -143,11 +145,13 @@ file_transcribe = gr.Interface(
143
  outputs="text",
144
  layout="horizontal",
145
  theme="huggingface",
146
- title="Whisper Large V3: Transcribe Audio/Video",
147
  description=(
148
  "Transcribe long-form microphone or audio inputs with the click of a button! The app uses the"
149
  f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
150
  " of arbitrary length."
 
 
151
  ),
152
  allow_flagging="never",
153
  )
@@ -168,6 +172,8 @@ yt_transcribe = gr.Interface(
168
  "Transcribe long-form YouTube videos with the click of a button! Demo uses the checkpoint"
169
  f" [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe video files of"
170
  " arbitrary length."
 
 
171
  ),
172
  allow_flagging="never",
173
  )
 
128
  "Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the"
129
  f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
130
  " of arbitrary length."
131
+ "\n\n"
132
+ "<center>⭐️Brought to you by <a href='https://note.com/sangmin/n/n9813f2064a6a'>Chiomirai School</a>⭐️</center>"
133
  ),
134
  allow_flagging="never",
135
  )
 
145
  outputs="text",
146
  layout="horizontal",
147
  theme="huggingface",
148
+ title="Whisper Large V3: Transcribe Audio File",
149
  description=(
150
  "Transcribe long-form microphone or audio inputs with the click of a button! The app uses the"
151
  f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
152
  " of arbitrary length."
153
+ "\n\n"
154
+ "<center>⭐️Brought to you by <a href='https://note.com/sangmin/n/n9813f2064a6a'>Chiomirai School</a>⭐️</center>"
155
  ),
156
  allow_flagging="never",
157
  )
 
172
  "Transcribe long-form YouTube videos with the click of a button! Demo uses the checkpoint"
173
  f" [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe video files of"
174
  " arbitrary length."
175
+ "\n\n"
176
+ "<center>⭐️Brought to you by <a href='https://note.com/sangmin/n/n9813f2064a6a'>Chiomirai School</a>⭐️</center>"
177
  ),
178
  allow_flagging="never",
179
  )