Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,35 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
language: fi
|
4 |
+
tags:
|
5 |
+
- automatic-speech-recognition
|
6 |
+
- fi
|
7 |
+
- finnish
|
8 |
+
---
|
9 |
+
# Colloquial Finnish Wav2vec2-Base
|
10 |
+
|
11 |
+
The base model pre-trained on 16kHz sampled speech audio. When using the model make sure that your speech input is also sampled at 16Khz.
|
12 |
+
|
13 |
+
**Note**: This model does not have a tokenizer as it was pre-trained on audio alone. In order to use this model **speech recognition**, a tokenizer should be created and the model should be fine-tuned on labeled text data. Check out [this blog](https://huggingface.co/blog/fine-tune-xlsr-wav2vec2) for more in-detail explanation of how to fine-tune the model.
|
14 |
+
|
15 |
+
**Note**: Fine-tuned versions will be available soon at: TBA
|
16 |
+
|
17 |
+
## Model description
|
18 |
+
|
19 |
+
The Finnish Wav2Vec2 Base has the same architecture and uses the same training objective as the English and multilingual one described in [Paper](https://arxiv.org/abs/2006.11477). It is pretrained on 158k hours of unlabeled Finnish speech, including [KAVI radio and television archive materials](https://kavi.fi/en/radio-ja-televisioarkistointia-vuodesta-2008/), Lahjoita Puhetta (Donate Speech), Finnish Parliament, Finnish VoxPopuli.
|
20 |
+
|
21 |
+
You can read more about the pre-trained model from [this paper](TODO).
|
22 |
+
|
23 |
+
## Intended uses & limitations
|
24 |
+
|
25 |
+
You can use this model for Finnish ASR (speech-to-text) and SER (Spoken Emotion Recognition) tasks.
|
26 |
+
|
27 |
+
### How to use
|
28 |
+
|
29 |
+
See [this notebook](https://colab.research.google.com/github/patrickvonplaten/notebooks/blob/master/Fine_Tune_XLS_R_on_Common_Voice.ipynb) for more information on how to fine-tune the model.
|
30 |
+
|
31 |
+
### Limitations and bias
|
32 |
+
|
33 |
+
This model was pre-trained with audio samples whose maximum length was 60 seconds so this model most likely works the best for quite short audios of similar length. However, you can try this model with a lot longer audios too and see how it works. If you encounter out of memory errors with very long audio files you can use the audio chunking method introduced in [this blog post](https://huggingface.co/blog/asr-chunking).
|
34 |
+
|
35 |
+
A vast majority of the data used for pre-training was from the [Lahjoita puhetta (Donate Speech) corpus](https://link.springer.com/article/10.1007/s10579-022-09606-3) so this model might have biases towards colloquial Finnish.
|