nollied commited on
Commit
e14a1a9
·
verified ·
1 Parent(s): 49c1276

slight update to readme

Browse files
Files changed (1) hide show
  1. README.md +24 -3
README.md CHANGED
@@ -1,3 +1,24 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # Available Models
6
+ Not all of the models that are made available with Whisper have yet been uploaded into this area yet.
7
+ It says this is for the rust version of ct2, however because ct2 is a .cpp project, the files contained
8
+ should work for any setup that rely on ct2. More to come in the future for making this easier to use, but
9
+ for now it will be partial uploads while I get everything situated.
10
+
11
+ ## Models and Languages
12
+
13
+ There are six model sizes, four with English-only versions, offering speed and accuracy tradeoffs.
14
+ Below are the names of the available models and their approximate memory requirements and inference speed relative to the large model.
15
+ The relative speeds below are measured by transcribing English speech on a A100, and the real-world speed may vary significantly depending on many factors including the language, the speaking speed, and the available hardware.
16
+
17
+ | Size | Parameters | English-only model | Multilingual model | Required VRAM | Relative speed |
18
+ |:------:|:----------:|:------------------:|:------------------:|:-------------:|:--------------:|
19
+ | tiny | 39 M | `tiny.en` | `tiny` | ~1 GB | ~10x |
20
+ | base | 74 M | `base.en` | `base` | ~1 GB | ~7x |
21
+ | small | 244 M | `small.en` | `small` | ~2 GB | ~4x |
22
+ | medium | 769 M | `medium.en` | `medium` | ~5 GB | ~2x |
23
+ | large | 1550 M | N/A | `large` | ~10 GB | 1x |
24
+ | turbo | 809 M | N/A | `turbo` | ~6 GB | ~8x |