Instructions to use GetmanY1/wav2vec2-base-fi-150k with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use GetmanY1/wav2vec2-base-fi-150k with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="GetmanY1/wav2vec2-base-fi-150k")# Load model directly from transformers import AutoProcessor, AutoModelForPreTraining processor = AutoProcessor.from_pretrained("GetmanY1/wav2vec2-base-fi-150k") model = AutoModelForPreTraining.from_pretrained("GetmanY1/wav2vec2-base-fi-150k", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -17,7 +17,7 @@ The base model pre-trained on 16kHz sampled speech audio. When using the model m
|
|
| 17 |
|
| 18 |
## Model description
|
| 19 |
|
| 20 |
-
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
|
| 21 |
|
| 22 |
You can read more about the pre-trained model from [this paper](TODO).
|
| 23 |
|
|
|
|
| 17 |
|
| 18 |
## Model description
|
| 19 |
|
| 20 |
+
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 pre-trained 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.
|
| 21 |
|
| 22 |
You can read more about the pre-trained model from [this paper](TODO).
|
| 23 |
|