Transformers course UU - Spotify valence regression
Collection
Finetuned models and song datasets • 11 items • Updated
How to use EvelienUU/deberta-valence-lyrics_training1 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="EvelienUU/deberta-valence-lyrics_training1") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("EvelienUU/deberta-valence-lyrics_training1")
model = AutoModelForSequenceClassification.from_pretrained("EvelienUU/deberta-valence-lyrics_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.0653 | 0.32 | 1000 | 0.0716 | 0.2218 | 0.2675 | -0.1322 |
| 0.0540 | 0.64 | 2000 | 0.0515 | 0.1864 | 0.2268 | 0.186 |
| 0.0515 | 0.96 | 3000 | 0.0510 | 0.1843 | 0.2258 | 0.1935 |
| 0.0481 | 1.28 | 4000 | 0.0499 | 0.1859 | 0.2234 | 0.2103 |
| 0.0478 | 1.6 | 5000 | 0.0490 | 0.1818 | 0.2213 | 0.2254 |
| 0.0479 | 1.92 | 6000 | 0.0492 | 0.1831 | 0.2218 | 0.2218 |
| 0.0423 | 2.24 | 7000 | 0.0496 | 0.1806 | 0.2228 | 0.2148 |
| 0.0397 | 2.56 | 8000 | 0.0502 | 0.1814 | 0.2241 | 0.2057 |
| 0.0398 | 2.88 | 9000 | 0.0511 | 0.1826 | 0.2261 | 0.1909 |