openfree commited on
Commit
edce004
·
verified ·
1 Parent(s): ae3ef7d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -8
app.py CHANGED
@@ -30,8 +30,6 @@ def transcribe(inputs, task):
30
  return text
31
 
32
 
33
- demo = gr.Blocks(theme=gr.themes.Ocean())
34
-
35
  css = """
36
  footer {
37
  visibility: hidden;
@@ -57,12 +55,7 @@ file_transcribe = gr.Interface(
57
  gr.Radio(["transcribe", "translate"], label="Task", value="transcribe"),
58
  ],
59
  outputs="text",
60
- title="Whisper Large V3: Transcribe Audio",
61
- description=(
62
- "Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the"
63
- f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
64
- " of arbitrary length."
65
- ),
66
  allow_flagging="never",
67
  )
68
 
 
30
  return text
31
 
32
 
 
 
33
  css = """
34
  footer {
35
  visibility: hidden;
 
55
  gr.Radio(["transcribe", "translate"], label="Task", value="transcribe"),
56
  ],
57
  outputs="text",
58
+ title="Whisper Large V3 Turbo: 음성을 텍스트로 변환",
 
 
 
 
 
59
  allow_flagging="never",
60
  )
61