Instructions to use lsnoo/russian_fairseq with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use lsnoo/russian_fairseq with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="lsnoo/russian_fairseq")# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("lsnoo/russian_fairseq") model = AutoModelForCTC.from_pretrained("lsnoo/russian_fairseq", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
| 1 |
Wav2vec2.0-xlsr-53 model is fine-tuned on commonvoice russian dataset
|
| 2 |
|
| 3 |
Configs (yaml)
|
| 4 |
-
-checkpoint
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-task:
|
| 11 |
---_name: audio_finetuning
|
| 12 |
---normalize: true
|
|
|
|
| 1 |
Wav2vec2.0-xlsr-53 model is fine-tuned on commonvoice russian dataset
|
| 2 |
|
| 3 |
Configs (yaml)
|
| 4 |
+
- checkpoint
|
| 5 |
+
save_interval: 1000
|
| 6 |
+
save_interval_updates: 1000
|
| 7 |
+
keep_interval_updates: 1
|
| 8 |
+
no_epoch_ckechpoints: true
|
| 9 |
+
best_checkpoint_metric: wer
|
| 10 |
-task:
|
| 11 |
---_name: audio_finetuning
|
| 12 |
---normalize: true
|