cristibp11 commited on
Commit
0ed0340
1 Parent(s): 694abe2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
README.md CHANGED
@@ -34,4 +34,12 @@ pretty_name: Common Voice 13.0 - Wav2Vec2 Preprocessed
34
  Basically took [Common Voice 13.0](https://huggingface.co/datasets/mozilla-foundation/common_voice_13_0), removed all languages
35
  but English and Spanish, removed all splits but train and test, then
36
  preprocessed data just as [this tutorial](https://huggingface.co/blog/fine-tune-xlsr-wav2vec2) for training
37
- Wav2Vec2 model for speech-recognition. Uploaded with `push_to_hub` function.
 
 
 
 
 
 
 
 
 
34
  Basically took [Common Voice 13.0](https://huggingface.co/datasets/mozilla-foundation/common_voice_13_0), removed all languages
35
  but English and Spanish, removed all splits but train and test, then
36
  preprocessed data just as [this tutorial](https://huggingface.co/blog/fine-tune-xlsr-wav2vec2) for training
37
+ Wav2Vec2 model for speech-recognition. Uploaded with `push_to_hub` function.
38
+
39
+ For now, just available in Spanish. Use as follows:
40
+
41
+ ```python
42
+ from datasets import load_dataset
43
+
44
+ dataset = load_dataset("cristibp11/common_voice_13_0_wav2vec2_preprocessed", "es")
45
+ ```