Transformers course UU - Spotify valence regression
Collection
Finetuned models and song datasets • 11 items • Updated
How to use EvelienUU/deberta-valence-title_training1 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="EvelienUU/deberta-valence-title_training1") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("EvelienUU/deberta-valence-title_training1")
model = AutoModelForSequenceClassification.from_pretrained("EvelienUU/deberta-valence-title_training1")This model is a fine-tuned version of microsoft/deberta-v3-small on the None 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 | Mae | Rmse | R Squared |
|---|---|---|---|---|---|---|
| 0.0708 | 0.32 | 1000 | 0.0623 | 0.2129 | 0.2497 | 0.0138 |
| 0.0642 | 0.64 | 2000 | 0.0595 | 0.206 | 0.2439 | 0.0592 |
| 0.0617 | 0.96 | 3000 | 0.0593 | 0.2036 | 0.2435 | 0.0621 |
| 0.0573 | 1.28 | 4000 | 0.0594 | 0.2017 | 0.2436 | 0.061 |
| 0.0563 | 1.6 | 5000 | 0.0577 | 0.202 | 0.2403 | 0.0864 |
| 0.0596 | 1.92 | 6000 | 0.0571 | 0.2002 | 0.2389 | 0.0971 |
| 0.0540 | 2.24 | 7000 | 0.0577 | 0.1993 | 0.2401 | 0.0878 |
| 0.0522 | 2.56 | 8000 | 0.0581 | 0.1993 | 0.241 | 0.0813 |
| 0.0529 | 2.88 | 9000 | 0.0586 | 0.1999 | 0.2421 | 0.0727 |