Update README.md
Browse files
    	
        README.md
    CHANGED
    
    | @@ -31,11 +31,11 @@ tags: | |
| 31 |  | 
| 32 | 
             
            ## Summary
         | 
| 33 |  | 
| 34 | 
            -
            The " | 
| 35 |  | 
| 36 | 
             
            ## Model Description
         | 
| 37 |  | 
| 38 | 
            -
            The " | 
| 39 |  | 
| 40 | 
             
            ## Intended Uses and Limitations
         | 
| 41 |  | 
| @@ -69,7 +69,7 @@ To transcribe audio in Catalan using this model, you can follow this example: | |
| 69 | 
             
            ```python
         | 
| 70 | 
             
            from faster_whisper import WhisperModel
         | 
| 71 |  | 
| 72 | 
            -
            model_size = " | 
| 73 |  | 
| 74 | 
             
            # Run on GPU with FP16
         | 
| 75 | 
             
            model = WhisperModel(model_size, device="cuda", compute_type="float16")
         | 
| @@ -94,7 +94,7 @@ for segment in segments: | |
| 94 | 
             
            This model is not a direct result of training. It is a conversion of a [Whisper](https://huggingface.co/openai/whisper-large-v3) model using [faster-whisper](https://github.com/guillaumekln/faster-whisper/tree/master). The procedure to create the model is as follows:
         | 
| 95 |  | 
| 96 | 
             
            ```bash
         | 
| 97 | 
            -
            ct2-transformers-converter --model  | 
| 98 | 
             
               --output_dir faster-whisper-bsc-large-v3-cat
         | 
| 99 | 
             
               --copy_files preprocessor_config.json 
         | 
| 100 | 
             
               --quantization float16
         | 
|  | |
| 31 |  | 
| 32 | 
             
            ## Summary
         | 
| 33 |  | 
| 34 | 
            +
            The "faster-whisper-bsc-large-v3-cat" is an acoustic model based on a [faster-whisper](https://github.com/guillaumekln/faster-whisper/tree/master) version of [whisper-bsc-large-v3-cat](https://huggingface.co/BSC-LT/whisper-bsc-large-v3-cat) suitable for Automatic Speech Recognition in Catalan.
         | 
| 35 |  | 
| 36 | 
             
            ## Model Description
         | 
| 37 |  | 
| 38 | 
            +
            The "faster-whisper-bsc-large-v3-cat" is the result of converting the [whisper-bsc-large-v3-cat](https://huggingface.co/BSC-LT/whisper-bsc-large-v3-cat) into a lighter model using a Python module called [faster-whisper](https://github.com/guillaumekln/faster-whisper/tree/master).
         | 
| 39 |  | 
| 40 | 
             
            ## Intended Uses and Limitations
         | 
| 41 |  | 
|  | |
| 69 | 
             
            ```python
         | 
| 70 | 
             
            from faster_whisper import WhisperModel
         | 
| 71 |  | 
| 72 | 
            +
            model_size = "BSC-LT/faster-whisper-bsc-large-v3-cat"
         | 
| 73 |  | 
| 74 | 
             
            # Run on GPU with FP16
         | 
| 75 | 
             
            model = WhisperModel(model_size, device="cuda", compute_type="float16")
         | 
|  | |
| 94 | 
             
            This model is not a direct result of training. It is a conversion of a [Whisper](https://huggingface.co/openai/whisper-large-v3) model using [faster-whisper](https://github.com/guillaumekln/faster-whisper/tree/master). The procedure to create the model is as follows:
         | 
| 95 |  | 
| 96 | 
             
            ```bash
         | 
| 97 | 
            +
            ct2-transformers-converter --model BSC-LT/whisper-bsc-large-v3-cat
         | 
| 98 | 
             
               --output_dir faster-whisper-bsc-large-v3-cat
         | 
| 99 | 
             
               --copy_files preprocessor_config.json 
         | 
| 100 | 
             
               --quantization float16
         | 

