Update README.md
Browse files
README.md
CHANGED
|
@@ -13,9 +13,11 @@ it is in float16, works well, quantization should also be possible, untested yet
|
|
| 13 |
```bash
|
| 14 |
git clone https://github.com/ml-explore/mlx-examples.git
|
| 15 |
cd mlx-examples/whisper/
|
| 16 |
-
pip install -r requirements.txt
|
|
|
|
| 17 |
|
| 18 |
```python
|
| 19 |
import mlx_whisper
|
| 20 |
result = mlx_whisper.transcribe("test.mp3", path_or_hf_repo="mlx-community/whisper-large-v3-turbo-german-f16")
|
| 21 |
-
print(result)
|
|
|
|
|
|
| 13 |
```bash
|
| 14 |
git clone https://github.com/ml-explore/mlx-examples.git
|
| 15 |
cd mlx-examples/whisper/
|
| 16 |
+
pip install -r requirements.txt
|
| 17 |
+
```
|
| 18 |
|
| 19 |
```python
|
| 20 |
import mlx_whisper
|
| 21 |
result = mlx_whisper.transcribe("test.mp3", path_or_hf_repo="mlx-community/whisper-large-v3-turbo-german-f16")
|
| 22 |
+
print(result)
|
| 23 |
+
```
|