rohitp1 commited on
Commit
489ff8a
·
1 Parent(s): fecf64c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -57,7 +57,7 @@ def transcribe(mic_input, upl_input, model_type):
57
  text = p2(audio)["text"]
58
  elif model_type == 'CleanFinetuned':
59
  text = p3(audio)["text"]
60
- elif model_type == 'DistilledQuantised':
61
  text = p1_quant(audio)['text']
62
  else:
63
  text = p1(audio)["text"]
 
57
  text = p2(audio)["text"]
58
  elif model_type == 'CleanFinetuned':
59
  text = p3(audio)["text"]
60
+ elif model_type == 'DistilledAndQuantised':
61
  text = p1_quant(audio)['text']
62
  else:
63
  text = p1(audio)["text"]