Datasets:

Modalities:
Audio
Text
Formats:
webdataset
ArXiv:
Libraries:
Datasets
WebDataset
rassulya commited on
Commit
1283854
·
verified ·
1 Parent(s): 30b9f81

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +37 -14
README.md CHANGED
@@ -1,23 +1,46 @@
1
- # Multilingual End-to-End Speech Recognition for Kazakh, Russian, and English
2
 
3
- ## Dataset Card
4
 
5
- **Repository:** [https://github.com/issai-nu/MultilingualASR](https://github.com/issai-nu/MultilingualASR)
6
 
7
- **Paper:** [A Study of Multilingual End-to-End Speech Recognition for Kazakh, Russian, and English](https://arxiv.org/abs/2108.01280)
8
 
9
- **Summary:** This repository contains the code and data for training a multilingual end-to-end (E2E) automatic speech recognition (ASR) model for Kazakh, Russian, and English. The research explores two output grapheme set construction methods (combined and independent) and investigates the impact of language models (LMs) and data augmentation techniques on model performance. The best monolingual and multilingual models achieved comparable performance with an average word error rate (WER) of 20.9% and 20.5%, respectively, on a combined test set.
10
 
 
11
 
12
- **Pre-trained Models:**
13
 
14
- | Model | Large Transformer | Large Transformer with Speed Perturbation (SP) | Large Transformer with SP and SpecAugment |
15
- |--------------------------|-------------------------------------------------|--------------------------------------------------------------------|--------------------------------------------------------------------|
16
- | Monolingual Kazakh | (link removed as per instructions) | (link removed as per instructions) | (link removed as per instructions) |
17
- | Monolingual Russian | (link removed as per instructions) | (link removed as per instructions) | (link removed as per instructions) |
18
- | Monolingual English | (link removed as per instructions) | (link removed as per instructions) | (link removed as per instructions) |
19
- | Multilingual Combined | (link removed as per instructions) | (link removed as per instructions) | (link removed as per instructions) |
20
- | Multilingual Independent | (link removed as per instructions) | (link removed as per instructions) | (link removed as per instructions) |
21
 
 
 
 
 
22
 
23
- **(Note: Links to pre-trained models have been removed as per the instructions.)**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Multilingual End-to-End Automatic Speech Recognition for Kazakh, Russian, and English
2
 
3
+ This repository contains the code and pretrained models for a study on multilingual end-to-end (E2E) automatic speech recognition (ASR) for Kazakh, Russian, and English, as described in [A Study of Multilingual End-to-End Speech Recognition for Kazakh, Russian, and English](https://arxiv.org/abs/2108.01280). The research explores the performance of multilingual E2E ASR models using Transformer networks, comparing different output grapheme set constructions (combined and independent), and evaluating the impact of language models (LMs) and data augmentation techniques. The best monolingual and multilingual models achieved 20.9% and 20.5% average word error rates, respectively, on a combined test set.
4
 
5
+ **Repository:** [Insert Hugging Face Repository Link Here]
6
 
 
7
 
8
+ ## Model Description
9
 
10
+ This work trains a single E2E ASR model capable of recognizing Kazakh, Russian, and English speech. Two variants of output grapheme set construction are explored: combined and independent. The impact of LMs and data augmentation (Speed Perturbation and SpecAugment) on model performance is also investigated. The models are based on Transformer networks.
11
 
12
+ ## Evaluation Results
13
 
14
+ The multilingual models achieve comparable performance to monolingual baselines with a similar number of parameters.
 
 
 
 
 
 
15
 
16
+ | Model Type | Average Word Error Rate (%) |
17
+ |---------------------------------|-----------------------------|
18
+ | Best Monolingual | 20.9 |
19
+ | Best Multilingual | 20.5 |
20
 
21
+
22
+ ## Pre-trained Models
23
+
24
+ The following pre-trained models are available:
25
+
26
+ | Model | Large Transformer | Large Transformer w/ SP | Large Transformer w/ SP & SpecAugment |
27
+ |---------------------------|--------------------|------------------------|---------------------------------------|
28
+ | Monolingual Kazakh | [Model Link] | [Model Link] | [Model Link] |
29
+ | Monolingual Russian | [Model Link] | [Model Link] | [Model Link] |
30
+ | Monolingual English | [Model Link] | [Model Link] | [Model Link] |
31
+ | Multilingual Combined | [Model Link] | [Model Link] | [Model Link] |
32
+ | Multilingual Independent | [Model Link] | [Model Link] | [Model Link] |
33
+
34
+ **(Note: Replace "[Model Link]" with the actual Hugging Face model links.)**
35
+
36
+
37
+ ## Citation
38
+
39
+ ```bibtex
40
+ @article{...,
41
+ title={A Study of Multilingual End-to-End Speech Recognition for Kazakh, Russian, and English},
42
+ author={...},
43
+ journal={arXiv preprint arXiv:2108.01280},
44
+ year={2021}
45
+ }
46
+ ```