SamuelHarner commited on
Commit
8ed4df7
1 Parent(s): ed7f773

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,7 +2,7 @@ from transformers import pipeline
2
  import gradio as gr
3
  from song_guesser import SongGuesser
4
 
5
- pipe = pipeline(model="MarieGotthardt/whisper") # change to "your-username/the-name-you-picked"
6
 
7
  def transcribe(audio):
8
  text = pipe(audio)["text"]
 
2
  import gradio as gr
3
  from song_guesser import SongGuesser
4
 
5
+ pipe = pipeline(model="SamuelHarner/whisper-tuned") # change to "your-username/the-name-you-picked"
6
 
7
  def transcribe(audio):
8
  text = pipe(audio)["text"]