Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,56 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- lv
|
5 |
+
pipeline_tag: automatic-speech-recognition
|
6 |
+
---
|
7 |
+
|
8 |
+
# General-purpose Latvian ASR model
|
9 |
+
|
10 |
+
This is a fine-tuned [whisper-large-v3](https://huggingface.co/openai/whisper-large-v3) model for Latvian, trained by [AiLab.lv](https://ailab.lv) using two general-purpose speech datasets: the Latvian part of [Common Voice 19.0](https://commonvoice.mozilla.org/lv/datasets), and the latest version of the Latvian broadcast dataset [LATE-Media](https://korpuss.lv/id/LATE-mediji).
|
11 |
+
|
12 |
+
This version of the model supersedes the previous [whisper-large-v3-lv-late-cv17](https://huggingface.co/AiLab-IMCS-UL/whisper-large-v3-lv-late-cv17) model.
|
13 |
+
|
14 |
+
We also provide 4-bit, 5-bit and 8-bit quantized versions of the model in the GGML format for the use with [whisper.cpp](https://github.com/ggerganov/whisper.cpp).
|
15 |
+
|
16 |
+
## Training
|
17 |
+
|
18 |
+
Fine-tuning was done using the Hugging Face Transformers library with a modified [seq2seq script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/speech-recognition#sequence-to-sequence).
|
19 |
+
|
20 |
+
| Training data | Hours |
|
21 |
+
|:---|---:|
|
22 |
+
| Latvian Common Voice 19.0 train set (the [VW split](https://analyzer.cv-toolbox.web.tr)) | 212.6 |
|
23 |
+
| LATE-Media 2.0 train set | 69.8 |
|
24 |
+
| Total | 282.4 |
|
25 |
+
|
26 |
+
## Evaluation
|
27 |
+
|
28 |
+
| Testing data | WER | CER |
|
29 |
+
|:---|---:|---:|
|
30 |
+
| Latvian Common Voice 19.0 test set (VW) - formatted | 4.8 | 1.6 |
|
31 |
+
| Latvian Common Voice 19.0 test set (VW) - normalized | 3.2 | 1.0 |
|
32 |
+
| LATE-Media 1.0 test set - formatted | 19.2 | 7.6 |
|
33 |
+
| LATE-Media 1.0 test set - normalized | 12.8 | 5.3 |
|
34 |
+
|
35 |
+
The Latvian CV 19.0 test set is available [here](https://analyzer.cv-toolbox.web.tr).
|
36 |
+
The LATE-Media 1.0 test set is available [here](http://hdl.handle.net/20.500.12574/99).
|
37 |
+
|
38 |
+
## Citation
|
39 |
+
|
40 |
+
Please cite this paper if you use this model in your research:
|
41 |
+
|
42 |
+
```bibtex
|
43 |
+
@inproceedings{dargis-etal-2024-balsutalka-lv,
|
44 |
+
author = {Dargis, Roberts and Znotins, Arturs and Auzina, Ilze and Saulite, Baiba and Reinsone, Sanita and Dejus, Raivis and Klavinska, Antra and Gruzitis, Normunds},
|
45 |
+
title = {{BalsuTalka.lv - Boosting the Common Voice Corpus for Low-Resource Languages}},
|
46 |
+
booktitle = {Proceedings of the Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING)},
|
47 |
+
publisher = {ELRA and ICCL},
|
48 |
+
year = {2024},
|
49 |
+
pages = {2080--2085},
|
50 |
+
url = {https://aclanthology.org/2024.lrec-main.187}
|
51 |
+
}
|
52 |
+
```
|
53 |
+
|
54 |
+
## Acknowledgements
|
55 |
+
|
56 |
+
This work was supported by the EU Recovery and Resilience Facility project [Language Technology Initiative](https://www.vti.lu.lv) (2.3.1.1.i.0/1/22/I/CFLA/002) in synergy with the State Research Programme project [LATE](https://www.digitalhumanities.lv/projekti/vpp-late/) (VPP-LETONIKA-2021/1-0006).
|