CoolFace
Modelpublic

firelily/quick-listing

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes16downloads
README.md142 linesDownload Raw Back to root
1---2language:3  - en4  - zh5  - de6  - es7  - ru8  - ko9  - fr10  - ja11  - pt12  - tr13  - pl14  - ca15  - nl16  - ar17  - sv18  - it19  - id20  - hi21  - fi22  - vi23  - he24  - uk25  - el26  - ms27  - cs28  - ro29  - da30  - hu31  - ta32  - 'no'33  - th34  - ur35  - hr36  - bg37  - lt38  - la39  - mi40  - ml41  - cy42  - sk43  - te44  - fa45  - lv46  - bn47  - sr48  - az49  - sl50  - kn51  - et52  - mk53  - br54  - eu55  - is56  - hy57  - ne58  - mn59  - bs60  - kk61  - sq62  - sw63  - gl64  - mr65  - pa66  - si67  - km68  - sn69  - yo70  - so71  - af72  - oc73  - ka74  - be75  - tg76  - sd77  - gu78  - am79  - yi80  - lo81  - uz82  - fo83  - ht84  - ps85  - tk86  - nn87  - mt88  - sa89  - lb90  - my91  - bo92  - tl93  - mg94  - as95  - tt96  - haw97  - ln98  - ha99  - ba100  - jw101  - su102  - yue103tags:104  - audio105  - automatic-speech-recognition106license: mit107library_name: ctranslate2108---109 110# Whisper large-v3 model for CTranslate2111 112This repository contains the conversion of [openai/whisper-large-v3](https://huggingface.co/openai/whisper-large-v3) to the [CTranslate2](https://github.com/OpenNMT/CTranslate2) model format.113 114This model can be used in CTranslate2 or projects based on CTranslate2 such as [faster-whisper](https://github.com/systran/faster-whisper).115 116## Example117 118```python119from faster_whisper import WhisperModel120 121model = WhisperModel("large-v3")122 123segments, info = model.transcribe("audio.mp3")124for segment in segments:125    print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))126```127 128## Conversion details129 130The original model was converted with the following command:131 132```133ct2-transformers-converter --model openai/whisper-large-v3 --output_dir faster-whisper-large-v3 \134    --copy_files tokenizer.json preprocessor_config.json --quantization float16135```136 137Note that the model weights are saved in FP16. This type can be changed when the model is loaded using the [`compute_type` option in CTranslate2](https://opennmt.net/CTranslate2/quantization.html).138 139## More information140 141**For more information about the original model, see its [model card](https://huggingface.co/openai/whisper-large-v3).**142