Instructions to use aoiandroid/whisperkit-coreml with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- WhisperKit
How to use aoiandroid/whisperkit-coreml with WhisperKit:
# Install CLI with Homebrew on macOS device brew install whisperkit-cli # View all available inference options whisperkit-cli transcribe --help # Download and run inference using whisper base model whisperkit-cli transcribe --audio-path /path/to/audio.mp3 # Or use your preferred model variant whisperkit-cli transcribe --model "large-v3" --model-prefix "distil" --audio-path /path/to/audio.mp3 --verbose
- Notebooks
- Google Colab
- Kaggle
docs: neutralize project-specific paths and product names
Browse files
README.md
CHANGED
|
@@ -119,9 +119,9 @@ All 14 files (Euskara, Guarani, Yoruba, Afrikaans, Bengali, Chinese, isiZulu, Ki
|
|
| 119 |
### Reproduce
|
| 120 |
|
| 121 |
```bash
|
| 122 |
-
cd
|
| 123 |
WHISPERKIT_TEST_AUDIO_DIR=/path/to/input/audio \
|
| 124 |
-
WHISPERKIT_TEST_LOG_DIR=/path/to/
|
| 125 |
swift test --filter WhisperKitAOIAndroidModelTests
|
| 126 |
```
|
| 127 |
|
|
|
|
| 119 |
### Reproduce
|
| 120 |
|
| 121 |
```bash
|
| 122 |
+
cd /path/to/your-swift-package
|
| 123 |
WHISPERKIT_TEST_AUDIO_DIR=/path/to/input/audio \
|
| 124 |
+
WHISPERKIT_TEST_LOG_DIR=/path/to/log \
|
| 125 |
swift test --filter WhisperKitAOIAndroidModelTests
|
| 126 |
```
|
| 127 |
|