AkashMnd commited on
Commit
a6556aa
·
verified ·
1 Parent(s): 5a2cdd8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
2
  import soundfile as sf
3
  from faster_whisper import WhisperModel
4
 
5
- model = WhisperModel("tiny.en", device="cpu", compute_type="int8")
6
 
7
  def transcribe_audio(audio):
8
  sr, data = audio
 
2
  import soundfile as sf
3
  from faster_whisper import WhisperModel
4
 
5
+ model = WhisperModel("tiny", device="cpu", compute_type="int8")
6
 
7
  def transcribe_audio(audio):
8
  sr, data = audio