64FC commited on
Commit
4e72d12
1 Parent(s): 999710a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -5,9 +5,9 @@ import gradio as gr
5
 
6
  device = "cuda:0" if torch.cuda.is_available() else "cpu"
7
 
8
- # Load Whisper-base
9
  pipe = pipeline("automatic-speech-recognition",
10
- model="openai/whisper-base",
11
  device=device
12
  )
13
 
 
5
 
6
  device = "cuda:0" if torch.cuda.is_available() else "cpu"
7
 
8
+ # Load Whisper-small
9
  pipe = pipeline("automatic-speech-recognition",
10
+ model="openai/whisper-small",
11
  device=device
12
  )
13