jlonsako commited on
Commit
f09834e
1 Parent(s): 4208212

Actually fixed the halving code

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -43,7 +43,7 @@ def Transcribe(file):
43
  hop_length=16000
44
  )
45
 
46
- model = model.half()
47
  model.to(device)
48
  print(f"Model loaded to {device}: Entering transcription phase")
49
 
 
43
  hop_length=16000
44
  )
45
 
46
+ model.half()
47
  model.to(device)
48
  print(f"Model loaded to {device}: Entering transcription phase")
49