owwe commited on
Commit
65cf7d2
·
1 Parent(s): 9d1a33c

Account name and checkpoint is changed

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -2,7 +2,7 @@ from transformers import pipeline
2
  import gradio as gr
3
 
4
  pipe = pipeline(
5
- model="kiwipirate/whisper_tr"
6
  ) # change to "your-username/the-name-you-picked"
7
 
8
 
@@ -16,7 +16,7 @@ iface = gr.Interface(
16
  inputs=gr.Audio(source="microphone", type="filepath"),
17
  outputs="text",
18
  title="Whisper Small Turkish",
19
- description="Realtime demo for Swedish speech recognition using a fine-tuned Whisper small model.",
20
  )
21
 
22
  iface.launch()
 
2
  import gradio as gr
3
 
4
  pipe = pipeline(
5
+ model="Kiwipirate/whisper-small-tr-cp2"
6
  ) # change to "your-username/the-name-you-picked"
7
 
8
 
 
16
  inputs=gr.Audio(source="microphone", type="filepath"),
17
  outputs="text",
18
  title="Whisper Small Turkish",
19
+ description="Realtime demo for Turkish speech recognition using a fine-tuned Whisper small model.",
20
  )
21
 
22
  iface.launch()