Add Large v3 Turbo model (recommended)
- Add ggml-large-v3-turbo.bin to model list - Mark as recommended: fast like Medium, accurate like Large - Update README with new model comparison Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -87,8 +87,9 @@ Download models directly from the app or manually:
|
|||||||
| Tiny | 75 MB | ~1 sec | Basic | Quick tests, simple phrases |
|
| Tiny | 75 MB | ~1 sec | Basic | Quick tests, simple phrases |
|
||||||
| Base | 142 MB | ~2 sec | Good | Clear speech, quiet environment |
|
| Base | 142 MB | ~2 sec | Good | Clear speech, quiet environment |
|
||||||
| Small | 466 MB | ~3 sec | Better | General use, some accents |
|
| Small | 466 MB | ~3 sec | Better | General use, some accents |
|
||||||
| Medium | 1.5 GB | ~5 sec | Best | Accents, noisy audio (Recommended) |
|
| Medium | 1.5 GB | ~5 sec | Great | Accents, noisy audio |
|
||||||
| Large | 3.1 GB | ~8 sec | Maximum | Difficult audio, max accuracy |
|
| Large v3 Turbo | 1.6 GB | ~4 sec | Best | **Recommended** - fast like Medium, accurate like Large |
|
||||||
|
| Large v3 | 3.1 GB | ~8 sec | Maximum | Difficult audio, max accuracy |
|
||||||
|
|
||||||
Models are stored in `~/.whisper-models/`
|
Models are stored in `~/.whisper-models/`
|
||||||
|
|
||||||
|
|||||||
@@ -41,18 +41,24 @@ struct WhisperModels {
|
|||||||
url: "https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-small.bin",
|
url: "https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-small.bin",
|
||||||
pros: "Good balance of speed and accuracy",
|
pros: "Good balance of speed and accuracy",
|
||||||
cons: "Slower on Intel Macs"),
|
cons: "Slower on Intel Macs"),
|
||||||
Model(name: "Medium (Recommended)",
|
Model(name: "Medium",
|
||||||
filename: "ggml-medium.bin",
|
filename: "ggml-medium.bin",
|
||||||
size: "1.5 GB",
|
size: "1.5 GB",
|
||||||
url: "https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-medium.bin",
|
url: "https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-medium.bin",
|
||||||
pros: "Best price/performance, handles accents well",
|
pros: "Good accuracy, handles accents well",
|
||||||
cons: "Larger download, slower on older Macs"),
|
cons: "Larger download, slower on older Macs"),
|
||||||
Model(name: "Large",
|
Model(name: "Large v3 Turbo (Recommended)",
|
||||||
|
filename: "ggml-large-v3-turbo.bin",
|
||||||
|
size: "1.6 GB",
|
||||||
|
url: "https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-large-v3-turbo.bin",
|
||||||
|
pros: "Best speed/accuracy ratio, fast like Medium, accurate like Large",
|
||||||
|
cons: "Slightly larger than Medium"),
|
||||||
|
Model(name: "Large v3",
|
||||||
filename: "ggml-large-v3.bin",
|
filename: "ggml-large-v3.bin",
|
||||||
size: "3.1 GB",
|
size: "3.1 GB",
|
||||||
url: "https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-large-v3.bin",
|
url: "https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-large-v3.bin",
|
||||||
pros: "Maximum accuracy for difficult audio",
|
pros: "Maximum accuracy for difficult audio",
|
||||||
cons: "Very large, slow, minimal improvement over Medium")
|
cons: "Very large, slow, minimal improvement over Turbo")
|
||||||
]
|
]
|
||||||
|
|
||||||
static var modelsDirectory: String {
|
static var modelsDirectory: String {
|
||||||
|
|||||||
Reference in New Issue
Block a user