Update README.md
Browse files
README.md
CHANGED
|
@@ -118,7 +118,7 @@ This model can be used in CTranslate2 or projects based on CTranslate2 such as [
|
|
| 118 |
```python
|
| 119 |
from faster_whisper import WhisperModel
|
| 120 |
|
| 121 |
-
model = WhisperModel("
|
| 122 |
|
| 123 |
segments, info = model.transcribe("audio.mp3")
|
| 124 |
for segment in segments:
|
|
@@ -130,7 +130,7 @@ for segment in segments:
|
|
| 130 |
The original model was converted with the following command:
|
| 131 |
|
| 132 |
```
|
| 133 |
-
ct2-transformers-converter --model
|
| 134 |
--copy_files tokenizer.json preprocessor_config.json --quantization float16
|
| 135 |
```
|
| 136 |
|
|
@@ -139,16 +139,3 @@ Note that the model weights are saved in FP16. This type can be changed when the
|
|
| 139 |
## More information
|
| 140 |
|
| 141 |
**For more information about the original model, see its [model card](https://huggingface.co/openai/whisper-large-v3-turbo).**
|
| 142 |
-
|
| 143 |
-
## Citation
|
| 144 |
-
|
| 145 |
-
Please cite the model using the following BibTeX entry:
|
| 146 |
-
|
| 147 |
-
```bibtex
|
| 148 |
-
@misc{deepdml/faster-whisper-large-v3-turbo-ct2,
|
| 149 |
-
title={Faster Whisper ct2 large-v3 turbo},
|
| 150 |
-
author={Jimenez, David},
|
| 151 |
-
howpublished={\url{https://huggingface.co/deepdml/faster-whisper-large-v3-turbo-ct2}},
|
| 152 |
-
year={2024}
|
| 153 |
-
}
|
| 154 |
-
```
|
|
|
|
| 118 |
```python
|
| 119 |
from faster_whisper import WhisperModel
|
| 120 |
|
| 121 |
+
model = WhisperModel("FILM6912/whisper-large-v3-turbo-ct2")
|
| 122 |
|
| 123 |
segments, info = model.transcribe("audio.mp3")
|
| 124 |
for segment in segments:
|
|
|
|
| 130 |
The original model was converted with the following command:
|
| 131 |
|
| 132 |
```
|
| 133 |
+
ct2-transformers-converter --model FILM6912/whisper-large-v3-turbo --output_dir faster-whisper-large-v3-turbo \
|
| 134 |
--copy_files tokenizer.json preprocessor_config.json --quantization float16
|
| 135 |
```
|
| 136 |
|
|
|
|
| 139 |
## More information
|
| 140 |
|
| 141 |
**For more information about the original model, see its [model card](https://huggingface.co/openai/whisper-large-v3-turbo).**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|