dpykhtar commited on
Commit
6cbbede
1 Parent(s): 01eb3ab

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +83 -0
README.md CHANGED
@@ -1,3 +1,86 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: cc-by-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - ua
4
+ library_name: nemo
5
+ datasets:
6
+ - MCV-10
7
+ tags:
8
+ - automatic-speech-recognition
9
+ - speech
10
+ - audio
11
+ - CTC
12
+ - Citrinet
13
+ - Transformer
14
+ - pytorch
15
+ - NeMo
16
+ - hf-asr-leaderboard
17
+ - Riva
18
  license: cc-by-4.0
19
  ---
20
+
21
+ <style>
22
+ img {
23
+ display: inline;
24
+ }
25
+ </style>
26
+
27
+ | [![Model architecture](https://img.shields.io/badge/Model_Arch-Citrinet--CTC-lightgrey#model-badge)](#model-architecture)
28
+ | [![Model size](https://img.shields.io/badge/Params-140M-lightgrey#model-badge)](#model-architecture)
29
+ | [![Language](https://img.shields.io/badge/Language-ua-lightgrey#model-badge)](#datasets)
30
+ | [![Riva Compatible](https://img.shields.io/badge/NVIDIA%20Riva-compatible-brightgreen#model-badge)](#deployment-with-nvidia-riva) |
31
+
32
+ This model transcribes speech in lowercase Ukrainian alphabet including spaces and apostrophes, and is trained on 69 hours of Ukrainian speech data.
33
+ It is a non-autoregressive "large" variant of Streaming Citrinet, with around 140 million parameters.
34
+ See the [model architecture](#model-architecture) section and [NeMo documentation](https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/main/asr/models.html#conformer-ctc) for complete architecture details.
35
+ It is also compatible with NVIDIA Riva for [production-grade server deployments](#deployment-with-nvidia-riva).
36
+
37
+ ## Usage
38
+
39
+ The model is available for use in the NeMo toolkit [3], and can be used as a pre-trained checkpoint for inference or for fine-tuning on another dataset.
40
+
41
+ To train, fine-tune or play with the model you will need to install [NVIDIA NeMo](https://github.com/NVIDIA/NeMo). We recommend you install it after you've installed the latest PyTorch version.
42
+
43
+ ```
44
+ pip install nemo_toolkit['all']
45
+ ```
46
+
47
+ ### Input
48
+
49
+ This model accepts 16000 kHz Mono-channel Audio (wav files) as input.
50
+
51
+ ### Output
52
+
53
+ This model provides transcribed speech as a string for a given audio sample.
54
+
55
+ ## Model Architecture
56
+
57
+ Streaming Citrinet-1024 model is a non-autoregressive, streaming variant of Citrinet model [1] for Automatic Speech Recognition which uses CTC loss/decoding instead of Transducer. You may find more info on this model here: [Citrinet Model](https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/main/asr/models.html#citrinet).
58
+
59
+ ## Training
60
+
61
+ The NeMo toolkit [3] was used for training the model for over several hundred epochs. This model was trained with this [example script](https://github.com/NVIDIA/NeMo/blob/main/examples/asr/asr_ctc/speech_to_text_ctc_bpe.py) and this [base config](https://github.com/NVIDIA/NeMo/blob/main/examples/asr/conf/citrinet/citrinet_1024.yaml).
62
+
63
+ The tokenizer for this models was built using the text transcripts of the train set with this [script](https://github.com/NVIDIA/NeMo/blob/main/scripts/tokenizers/process_asr_text_tokenizer.py).
64
+
65
+ ### Datasets
66
+
67
+ Model was trained on Mozilla Common Voice Corpus 10.0 dataset comprising of 69 hours of Ukrainian speech.
68
+
69
+ ## Limitations
70
+
71
+ Since this model was trained on publicly available speech datasets, the performance of this model might degrade for speech that includes technical terms, or vernacular that the model has not been trained on. The model might also perform worse for accented speech.
72
+
73
+ ## Deployment with NVIDIA Riva
74
+
75
+ For the best real-time accuracy, latency, and throughput, deploy the model with [NVIDIA Riva](https://developer.nvidia.com/riva), an accelerated speech AI SDK deployable on-prem, in all clouds, multi-cloud, hybrid, at the edge, and embedded.
76
+ Additionally, Riva provides:
77
+ * World-class out-of-the-box accuracy for the most common languages with model checkpoints trained on proprietary data with hundreds of thousands of GPU-compute hours
78
+ * Best in class accuracy with run-time word boosting (e.g., brand and product names) and customization of acoustic model, language model, and inverse text normalization
79
+ * Streaming speech recognition, Kubernetes compatible scaling, and Enterprise-grade support
80
+ Check out [Riva live demo](https://developer.nvidia.com/riva#demos).
81
+
82
+ ## References
83
+
84
+ [1] [Citrinet: Closing the Gap between Non-Autoregressive and Autoregressive End-to-End Models for Automatic Speech Recognition](https://arxiv.org/abs/2104.01721) <br />
85
+ [2] [Google Sentencepiece Tokenizer](https://github.com/google/sentencepiece) <br />
86
+ [3] [NVIDIA NeMo Toolkit](https://github.com/NVIDIA/NeMo)