mikegarts commited on
Commit
0a72a5a
1 Parent(s): 665f810

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,7 +2,7 @@
2
  import os
3
  os.system('git clone https://github.com/ggerganov/whisper.cpp.git')
4
  os.system('make -C ./whisper.cpp')
5
- MODELS_TO_DOWNLOAD = ['small', 'base', 'tiny'] # ['tiny', 'small', 'base', 'medium', 'large']
6
 
7
  for model_name in MODELS_TO_DOWNLOAD:
8
  os.system(f'bash ./whisper.cpp/models/download-ggml-model.sh {model_name}')
 
2
  import os
3
  os.system('git clone https://github.com/ggerganov/whisper.cpp.git')
4
  os.system('make -C ./whisper.cpp')
5
+ MODELS_TO_DOWNLOAD = ['base', 'small', 'tiny', 'medium'] # ['tiny', 'small', 'base', 'medium', 'large']
6
 
7
  for model_name in MODELS_TO_DOWNLOAD:
8
  os.system(f'bash ./whisper.cpp/models/download-ggml-model.sh {model_name}')