teemo001 commited on
Commit
db5cc52
1 Parent(s): 62882ec

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -0
README.md ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## show available models
2
+ ```python
3
+ import whisper
4
+ print(whisper.available_models())
5
+ ```
6
+ ## download model example
7
+ ```python
8
+ whisper.load_model('large-v3', download_root=r"D:\models\openai-whisper")
9
+ ```
10
+
11
+ ## choose model
12
+ | Size | Parameters | English-only model | Multilingual model | Required VRAM | Relative speed |
13
+ |:------:|:----------:|:------------------:|:------------------:|:-------------:|:--------------:|
14
+ | tiny | 39 M | `tiny.en` | `tiny` | ~1 GB | ~32x |
15
+ | base | 74 M | `base.en` | `base` | ~1 GB | ~16x |
16
+ | small | 244 M | `small.en` | `small` | ~2 GB | ~6x |
17
+ | medium | 769 M | `medium.en` | `medium` | ~5 GB | ~2x |
18
+ | large | 1550 M | N/A | `large` | ~10 GB | 1x |