Create README.md
Browse files
    	
        README.md
    ADDED
    
    | @@ -0,0 +1,19 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            license: mit
         | 
| 3 | 
            +
            library_name: mlx
         | 
| 4 | 
            +
            ---
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            ## Use with mlx-whisper
         | 
| 7 | 
            +
             | 
| 8 | 
            +
             | 
| 9 | 
            +
            ```bash
         | 
| 10 | 
            +
            pip install mlx-whisper
         | 
| 11 | 
            +
            ```
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            ```python
         | 
| 14 | 
            +
            import mlx_whisper
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            result = mlx_whisper.transcribe(
         | 
| 17 | 
            +
              speech_file,
         | 
| 18 | 
            +
              path_or_hf_repo="mlx-community/whisper-large-v3-mlx")
         | 
| 19 | 
            +
            ```
         | 

