nairaxo commited on
Commit
e97c9ae
1 Parent(s): 2ed4fcb

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +84 -0
README.md ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: kabyle
3
+ thumbnail:
4
+ pipeline_tag: automatic-speech-recognition
5
+ tags:
6
+ - CTC
7
+ - pytorch
8
+ - speechbrain
9
+ - Transformer
10
+ license: "apache-2.0"
11
+ datasets:
12
+ - commonvoice
13
+ metrics:
14
+ - wer
15
+ - cer
16
+ ---
17
+
18
+ <iframe src="https://ghbtns.com/github-btn.html?user=speechbrain&repo=speechbrain&type=star&count=true&size=large&v=2" frameborder="0" scrolling="0" width="170" height="30" title="GitHub"></iframe>
19
+ <br/><br/>
20
+
21
+ # wav2vec 2.0 with CTC/Attention trained on DVoice Kabyle (No LM)
22
+ This repository provides all the necessary tools to perform automatic speech
23
+ recognition from an end-to-end system pretrained on a [CommonVoice](https://commonvoice.mozilla.org/) Kabyle dataset within
24
+ SpeechBrain. For a better experience, we encourage you to learn more about
25
+ [SpeechBrain](https://speechbrain.github.io).
26
+
27
+ | DVoice Release | Val. CER | Val. WER | Test CER | Test WER |
28
+ |:-------------:|:---------------------------:| -----:| -----:| -----:|
29
+ | v2.0 | 6.67 | 25.22 | 6.55 | 24.80 |
30
+
31
+ # About DVoice
32
+ DVoice is a community initiative that aims to provide African languages and dialects with data and models to facilitate their use of voice technologies. The lack of data on these languages makes it necessary to collect data using methods that are specific to each language. Two different approaches are currently used: the DVoice platforms ([https://dvoice.ma](https://dvoice.ma) and [https://dvoice.sn](https://dvoice.sn)), which are based on Mozilla Common Voice, for collecting authentic recordings from the community, and transfer learning techniques for automatically labeling the recordings. The DVoice platform currently manages 7 languages including Darija (Moroccan Arabic dialect) whose dataset appears on this version, Wolof, Mandingo, Serere, Pular, Diola and Soninke.
33
+
34
+ This Kabyle ASR model was obtained by combining the [CommonVoice](https://commonvoice.mozilla.org/) Kabyle Dataset with transfer learning and speech augmentation modules.
35
+
36
+ ## Pipeline description
37
+ This ASR system is composed of 2 different but linked blocks:
38
+ - Tokenizer (unigram) that transforms words into subword units and trained with
39
+ the train transcriptions.
40
+ - Acoustic model (wav2vec2.0 + CTC). A pretrained wav2vec 2.0 model ([facebook/wav2vec2-large-xlsr-53](https://huggingface.co/facebook/wav2vec2-large-xlsr-53)) is combined with two DNN layers and finetuned on the Darija dataset.
41
+ The obtained final acoustic representation is given to the CTC greedy decoder.
42
+ The system is trained with recordings sampled at 16kHz (single channel).
43
+ The code will automatically normalize your audio (i.e., resampling + mono channel selection) when calling *transcribe_file* if needed.
44
+
45
+ ## Install SpeechBrain
46
+ First of all, please install tranformers and SpeechBrain with the following command:
47
+ ```
48
+ pip install speechbrain transformers
49
+ ```
50
+ Please notice that we encourage you to read the SpeechBrain tutorials and learn more about
51
+ [SpeechBrain](https://speechbrain.github.io).
52
+
53
+ ### Transcribing your own audio files (in Kabyle)
54
+ ```python
55
+ from speechbrain.pretrained import EncoderASR
56
+ asr_model = EncoderASR.from_hparams(source="nairaxo/dvoice-kabyle", savedir="pretrained_models/asr-wav2vec2-dvoice-wol")
57
+ asr_model.transcribe_file('./the_path_to_your_audio_file')
58
+ ```
59
+
60
+ ### Inference on GPU
61
+ To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method.
62
+
63
+ ### Training
64
+ To train the model from scratch, please see our GitHub tutorial [here](https://github.com/AIOXLABS/DVoice).
65
+
66
+ ### Limitations
67
+ The SpeechBrain team does not provide any warranty on the performance achieved by this model when used on other datasets.
68
+
69
+ #### Referencing SpeechBrain
70
+ ```
71
+ @misc{SB2021,
72
+ author = {Ravanelli, Mirco and Parcollet, Titouan and Rouhe, Aku and Plantinga, Peter and Rastorgueva, Elena and Lugosch, Loren and Dawalatabad, Nauman and Ju-Chieh, Chou and Heba, Abdel and Grondin, Francois and Aris, William and Liao, Chien-Feng and Cornell, Samuele and Yeh, Sung-Lin and Na, Hwidong and Gao, Yan and Fu, Szu-Wei and Subakan, Cem and De Mori, Renato and Bengio, Yoshua },
73
+ title = {SpeechBrain},
74
+ year = {2021},
75
+ publisher = {GitHub},
76
+ journal = {GitHub repository},
77
+ howpublished = {\\\\url{https://github.com/speechbrain/speechbrain}},
78
+ }
79
+ ```
80
+
81
+ #### About SpeechBrain
82
+ SpeechBrain is an open-source and all-in-one speech toolkit. It is designed to be simple, extremely flexible, and user-friendly. Competitive or state-of-the-art performance is obtained in various domains.
83
+ Website: https://speechbrain.github.io/
84
+ GitHub: https://github.com/speechbrain/speechbrain