akki2825 commited on
Commit
94c1047
1 Parent(s): 6cb326f

Update run.py

Browse files
Files changed (1) hide show
  1. run.py +1 -1
run.py CHANGED
@@ -39,7 +39,7 @@ def reformat_freq(sr, y):
39
 
40
  def transcribe(audio_file):
41
 
42
- text = model(audio_file)
43
  return text
44
 
45
 
 
39
 
40
  def transcribe(audio_file):
41
 
42
+ text = model.stt(audio_file)
43
  return text
44
 
45