Souphaxay Naovalath
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -2,16 +2,20 @@
|
|
2 |
language: lo
|
3 |
license: apache-2.0
|
4 |
tags:
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
datasets:
|
12 |
-
|
13 |
library_name: transformers
|
14 |
pipeline_tag: automatic-speech-recognition
|
|
|
|
|
|
|
|
|
15 |
---
|
16 |
|
17 |
# XLS-R Lao ASR
|
@@ -47,12 +51,15 @@ with torch.no_grad():
|
|
47 |
transcription = processor.batch_decode(predicted_ids)[0]
|
48 |
|
49 |
print(transcription)
|
|
|
50 |
|
51 |
## Citation
|
|
|
52 |
@thesis{naovalath2025lao,
|
53 |
title={Lao Automatic Speech Recognition using Transfer Learning},
|
54 |
author={Souphaxay Naovalath and Sounmy Chanthavong},
|
55 |
advisor={Dr. Somsack Inthasone},
|
56 |
school={National University of Laos, Faculty of Natural Sciences, Computer Science Department},
|
57 |
year={2025}
|
58 |
-
}
|
|
|
|
2 |
language: lo
|
3 |
license: apache-2.0
|
4 |
tags:
|
5 |
+
- automatic-speech-recognition
|
6 |
+
- speech
|
7 |
+
- audio
|
8 |
+
- lao
|
9 |
+
- wav2vec2
|
10 |
+
- xls-r
|
11 |
datasets:
|
12 |
+
- h3llohihi/lao-asr-thesis-dataset
|
13 |
library_name: transformers
|
14 |
pipeline_tag: automatic-speech-recognition
|
15 |
+
metrics:
|
16 |
+
- cer
|
17 |
+
base_model:
|
18 |
+
- facebook/wav2vec2-xls-r-300m
|
19 |
---
|
20 |
|
21 |
# XLS-R Lao ASR
|
|
|
51 |
transcription = processor.batch_decode(predicted_ids)[0]
|
52 |
|
53 |
print(transcription)
|
54 |
+
```
|
55 |
|
56 |
## Citation
|
57 |
+
```bibtex
|
58 |
@thesis{naovalath2025lao,
|
59 |
title={Lao Automatic Speech Recognition using Transfer Learning},
|
60 |
author={Souphaxay Naovalath and Sounmy Chanthavong},
|
61 |
advisor={Dr. Somsack Inthasone},
|
62 |
school={National University of Laos, Faculty of Natural Sciences, Computer Science Department},
|
63 |
year={2025}
|
64 |
+
}
|
65 |
+
```
|