Spaces:
Running
Running
jhj0517
commited on
Commit
·
8f9e3e1
1
Parent(s):
f7b7cdd
add typo cases
Browse files
app.py
CHANGED
|
@@ -31,7 +31,8 @@ class App:
|
|
| 31 |
elif whisper_type in ["whisper"]:
|
| 32 |
whisper_inf = WhisperInference()
|
| 33 |
whisper_inf.model_dir = self.args.whisper_model_dir
|
| 34 |
-
elif whisper_type in ["insanely_fast_whisper", "insanely-fast-whisper", "insanelyfastwhisper"
|
|
|
|
| 35 |
whisper_inf = InsanelyFastWhisperInference()
|
| 36 |
whisper_inf.model_dir = self.args.insanely_fast_whisper_model_dir
|
| 37 |
else:
|
|
|
|
| 31 |
elif whisper_type in ["whisper"]:
|
| 32 |
whisper_inf = WhisperInference()
|
| 33 |
whisper_inf.model_dir = self.args.whisper_model_dir
|
| 34 |
+
elif whisper_type in ["insanely_fast_whisper", "insanely-fast-whisper", "insanelyfastwhisper",
|
| 35 |
+
"insanely_faster_whisper", "insanely-faster-whisper", "insanelyfasterwhisper"]:
|
| 36 |
whisper_inf = InsanelyFastWhisperInference()
|
| 37 |
whisper_inf.model_dir = self.args.insanely_fast_whisper_model_dir
|
| 38 |
else:
|