ciditel commited on
Commit
3b97833
1 Parent(s): 98cb8af

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -96,15 +96,15 @@ file_transcribe = gr.Interface(
96
  gr.Radio(["transcribe", "translate"], label="Task", value="transcribe"),
97
  ],
98
  outputs="text",
99
- layout="horizontal",
100
  theme="huggingface",
101
  title="Whisper Large V3: Transcribe Audio",
102
- description=(
103
- "Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the OpenAI Whisper"
104
- f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
105
- " of arbitrary length."
106
- ),
107
- allow_flagging="never",
108
  )
109
 
110
 
 
96
  gr.Radio(["transcribe", "translate"], label="Task", value="transcribe"),
97
  ],
98
  outputs="text",
99
+ #layout="horizontal",
100
  theme="huggingface",
101
  title="Whisper Large V3: Transcribe Audio",
102
+ #description=(
103
+ # "Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the OpenAI Whisper"
104
+ # f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
105
+ # " of arbitrary length."
106
+ #),
107
+ #allow_flagging="never",
108
  )
109
 
110