File size: 2,654 Bytes
93ee4b2
 
17e5fa4
 
 
 
 
 
 
 
 
 
 
 
 
93ee4b2
17e5fa4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2918ffe
17e5fa4
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
license: cc-by-4.0
language: mt
datasets:
- common_voice
tags:
- audio
- automatic-speech-recognition
- maltese
- whisper-large
- whisper-large-v1
- masri-project
- malta
- university-of-malta
- faster-whisper
---
# whisper-large-maltese-8k-steps-64h-ct2

This is a faster-whisper version of [carlosdanielhernandezmena/whisper-large-maltese-8k-steps-64h-ct2](https://huggingface.co/carlosdanielhernandezmena/whisper-large-maltese-8k-steps-64h-ct2).

Most of the data used to create this model is available at the the [MASRI Project](https://www.um.edu.mt/projects/masri/) homepage.

The model was created like described in [faster-whisper](https://github.com/guillaumekln/faster-whisper/tree/master):

```bash
ct2-transformers-converter --model carlosdanielhernandezmena/whisper-large-maltese-8k-steps-64h \
    --output_dir whisper-large-maltese-8k-steps-64h-ct2 \
    --quantization float16
```

# Usage

```python
from faster_whisper import WhisperModel

model_size = "whisper-large-maltese-8k-steps-64h-ct2"

# Run on GPU with FP16
model = WhisperModel(model_size, device="cuda", compute_type="float16")

# or run on GPU with INT8
# model = WhisperModel(model_size, device="cuda", compute_type="int8_float16")
# or run on CPU with INT8
# model = WhisperModel(model_size, device="cpu", compute_type="int8")

segments, info = model.transcribe("audio.mp3", beam_size=5)

print("Detected language '%s' with probability %f" % (info.language, info.language_probability))

for segment in segments:
    print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))
```

# BibTeX entry and citation info
*When publishing results based on these models please refer to:*
```bibtex
@misc{mena2023whisperlargemaltesect2,
      title={Acoustic Model in Maltese: whisper-large-maltese-8k-steps-64h-ct2.}, 
      author={Hernandez Mena, Carlos Daniel},
      url={https://huggingface.co/carlosdanielhernandezmena/whisper-large-maltese-8k-steps-64h-ct2},
      year={2023}
}
```

# Acknowledgements

The MASRI Project is funded by the University of Malta Research Fund Awards. We want to thank to Merlin Publishers (Malta) for provinding the audiobooks used to create the MASRI-MERLIN Corpus.

Thanks to Jón Guðnason, head of the Language and Voice Lab for providing computational power to make this model possible. We also want to thank to the "Language Technology Programme for Icelandic 2019-2023" which is managed and coordinated by Almannarómur, and it is funded by the Icelandic Ministry of Education, Science and Culture.

Special thanks to Björn Ingi Stefánsson for setting up the configuration of the server where this model was trained.