Views
No views yet
Trial timestamp (UTC): 2025-10-07 15:02:29
| Hyperparameter | Value |
|---|---|
| LR | 3e-05 |
| EPOCHS | 3 |
| MAX_LENGTH | 256 |
| USE_BIO | True |
| USE_LANG_TOKEN | True |
| GATED_BIO | True |
| FOCAL_LOSS | True |
| FOCAL_GAMMA | 1.5 |
| USE_SAMPLER | True |
| R_DROP | True |
| R_KL_ALPHA | 1.0 |
| Metric | Value |
|---|---|
| trial | 1 |
| cfg | {'LR': 3e-05, 'EPOCHS': 3.0, 'MAX_LENGTH': 256.0, 'USE_BIO': 1.0, 'USE_LANG_TOKEN': 1.0, 'GATED_BIO': 1.0, 'FOCAL_LOSS': 1.0, 'FOCAL_GAMMA': 1.5, 'USE_SAMPLER': 1.0, 'R_DROP': 1.0, 'R_KL_ALPHA': 1.0} |
| f1_macro_dev | 0.8083653435766112 |
| best_threshold_dev | 0.75 |
| precision_macro_dev | 0.8363588717362302 |
| recall_macro_dev | 0.7865056818181818 |
train_en.csv, train_it.csv, train_es.csv with 15% stratified Dev).1from transformers import AutoTokenizer, AutoModelForSequenceClassification
2tok = AutoTokenizer.from_pretrained("SimoneAstarita/october-project-first-sweep-20251007-150229-t01")
3model = AutoModelForSequenceClassification.from_pretrained("SimoneAstarita/october-project-first-sweep-20251007-150229-t01")