Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
A fine-tuned multi-lingual pretrained speech model for Automatic Speech Recognition.
|
2 |
+
|
3 |
+
It's a Wav2Vec2 Model with an XVector feature extraction head on top for tasks like Speaker Verification.
|
4 |
+
|
5 |
+
Wav2Vec2 was proposed in wav2vec 2.0: A Framework for Self-Supervised Learning of Speech Representations by Alexei Baevski, Henry Zhou, Abdelrahman Mohamed, Michael Auli.
|
6 |
+
|
7 |
+
|
8 |
+
from transformers import AutoProcessor, AutoModelForCTC
|
9 |
+
|
10 |
+
processor = AutoProcessor.from_pretrained("pki/wav2vec2-large-xlsr-53")
|
11 |
+
|
12 |
+
model = AutoModelForCTC.from_pretrained("pki/wav2vec2-large-xlsr-53")
|