s3prl/superb
Viewer • Updated • 304k • 913 • 34
How to use AdamAbate1/wav2vec2-base-finetuned-ks with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("audio-classification", model="AdamAbate1/wav2vec2-base-finetuned-ks") # Load model directly
from transformers import AutoProcessor, AutoModelForAudioClassification
processor = AutoProcessor.from_pretrained("AdamAbate1/wav2vec2-base-finetuned-ks")
model = AutoModelForAudioClassification.from_pretrained("AdamAbate1/wav2vec2-base-finetuned-ks", device_map="auto")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 |
|---|---|---|---|---|
| 0.7367 | 1.0 | 399 | 0.6341 | 0.8819 |
| 0.3087 | 2.0 | 798 | 0.1900 | 0.9771 |
| 0.1979 | 3.0 | 1197 | 0.1232 | 0.9800 |
| 0.171 | 4.0 | 1596 | 0.1057 | 0.9794 |
| 0.1253 | 5.0 | 1995 | 0.0993 | 0.9812 |