Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core ML Whisper Large V3 Turbo (FP16)
|
| 2 |
+
|
| 3 |
+
This archive contains the Core ML encoder/decoder pair converted from `openai/whisper-large-v3-turbo` with fp16 precision, plus associated tokenizer assets.
|
| 4 |
+
|
| 5 |
+
## Files
|
| 6 |
+
|
| 7 |
+
- `Encoder.mlpackage`
|
| 8 |
+
- `DecoderFull.mlpackage`
|
| 9 |
+
- Tokenizer & processor configs (`*json`, `merges.txt`, `vocab.json`)
|
| 10 |
+
- SHA256 checksum file
|
| 11 |
+
|
| 12 |
+
## Usage
|
| 13 |
+
|
| 14 |
+
1. Download the tarball and checksum:
|
| 15 |
+
```bash
|
| 16 |
+
hf download DRTR-J/whisper-large-v3-turbo-coreml-fp16 whisper-large-v3-turbo-coreml-fp16.tar.gz
|
| 17 |
+
hf download DRTR-J/whisper-large-v3-turbo-coreml-fp16 whisper-large-v3-turbo-coreml-fp16.sha256
|
| 18 |
+
```
|
| 19 |
+
2. Verify integrity:
|
| 20 |
+
```bash
|
| 21 |
+
shasum -a 256 -c whisper-large-v3-turbo-coreml-fp16.sha256
|
| 22 |
+
```
|
| 23 |
+
3. Extract and load in your Swift/Rust app:
|
| 24 |
+
```bash
|
| 25 |
+
tar -xzf whisper-large-v3-turbo-coreml-fp16.tar.gz
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
For latency guidance, warm the models once on app start to trigger ANE compilation; subsequent 68 s clips transcribe in ~13.5 s on an M4 Pro when paired with a native decoding loop.
|