fiifinketia commited on
Commit
20f7656
·
verified ·
1 Parent(s): f92d181

Create README.md

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