s3prl/superb
Viewer • Updated • 304k • 1.9k • 33
How to use addy88/wav2vec2-base-finetuned-ks with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("audio-classification", model="addy88/wav2vec2-base-finetuned-ks") # Load model directly
from transformers import AutoProcessor, AutoModelForAudioClassification
processor = AutoProcessor.from_pretrained("addy88/wav2vec2-base-finetuned-ks")
model = AutoModelForAudioClassification.from_pretrained("addy88/wav2vec2-base-finetuned-ks")This model is a fine-tuned version of facebook/wav2vec2-base on the superb dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|---|---|---|---|---|
| 1.102 | 1.0 | 399 | 1.0087 | 0.6574 |
| 0.5228 | 2.0 | 798 | 0.4266 | 0.9247 |
| 0.3222 | 3.0 | 1197 | 0.2037 | 0.9744 |
| 0.2096 | 4.0 | 1596 | 0.1444 | 0.9766 |
| 0.2003 | 5.0 | 1995 | 0.1339 | 0.9768 |