flateon commited on
Commit
65c8d6f
·
verified ·
1 Parent(s): be9853a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -3
README.md CHANGED
@@ -1,3 +1,41 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model:
4
+ - BELLE-2/Belle-whisper-large-v3-turbo-zh
5
+ tags:
6
+ - audio
7
+ - automatic-speech-recognition
8
+ ---
9
+
10
+ # Belle-whisper-large-v3-turbo-zh model for CTranslate2
11
+
12
+ This repository contains the conversion of [BELLE-2/Belle-whisper-large-v3-turbo-zh](https://huggingface.co/BELLE-2/Belle-whisper-large-v3-turbo-zh) to the [CTranslate2](https://github.com/OpenNMT/CTranslate2) model format.
13
+
14
+ This model can be used in CTranslate2 or projects based on CTranslate2 such as [faster-whisper](https://github.com/systran/faster-whisper).
15
+
16
+ ## Example
17
+
18
+ ```python
19
+ from faster_whisper import WhisperModel
20
+
21
+ model = WhisperModel("flateon/Belle-whisper-large-v3-turbo-zh-ct2")
22
+
23
+ segments, info = model.transcribe("audio.mp3")
24
+ for segment in segments:
25
+ print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))
26
+ ```
27
+
28
+ ## Conversion details
29
+
30
+ The original model was converted with the following command:
31
+
32
+ ```
33
+ ct2-transformers-converter --model BELLE-2/Belle-whisper-large-v3-turbo-zh --output_dir Belle-whisper-large-v3-turbo-zh-ct2 \
34
+ --copy_files tokenizer.json preprocessor_config.json --quantization float16
35
+ ```
36
+
37
+ Note 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).
38
+
39
+ ## More information
40
+
41
+ **For more information about the original model, see its [model card](https://huggingface.co/BELLE-2/Belle-whisper-large-v3-turbo-zh).**