ivangtorre
commited on
Commit
•
60e858d
1
Parent(s):
2f23015
Update README.md
Browse files
README.md
CHANGED
@@ -31,4 +31,15 @@ logits = model(file[0]).logits
|
|
31 |
predicted_ids = torch.argmax(logits, dim=-1)
|
32 |
transcription = processor.batch_decode(predicted_ids)
|
33 |
print("HF prediction: ", transcription)
|
34 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
predicted_ids = torch.argmax(logits, dim=-1)
|
32 |
transcription = processor.batch_decode(predicted_ids)
|
33 |
print("HF prediction: ", transcription)
|
34 |
+
```
|
35 |
+
|
36 |
+
## Citation
|
37 |
+
|
38 |
+
```bibtex
|
39 |
+
@misc{grosman2021xlsr-1b-russian,
|
40 |
+
title={Fine-tuned {XLS-R} 1{B} model for speech recognition in {R}ussian},
|
41 |
+
author={Grosman, Jonatas},
|
42 |
+
howpublished={\url{https://huggingface.co/jonatasgrosman/wav2vec2-xls-r-1b-russian}},
|
43 |
+
year={2022}
|
44 |
+
}
|
45 |
+
```
|