MultiPRIDE @ EVALITA 2026
Collection
Binary classification task in which systems must classify whether a term related to LGBTQ+ context in a sentence is used with a reclamatory intent. • 11 items • Updated • 1
# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("AIWizards/MultiPRIDE-DualEncoder-MainStage-FT-it")
model = AutoModelForSequenceClassification.from_pretrained("AIWizards/MultiPRIDE-DualEncoder-MainStage-FT-it")This model is a fine-tuned version of nickprock/setfit-italian-hate-speech 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 | Accuracy | F1 | Precision | Recall |
|---|---|---|---|---|---|---|---|
| 0.0264 | 1.0 | 95 | 0.0112 | 0.9693 | 0.9180 | 0.9333 | 0.9032 |
| 0.0283 | 2.0 | 190 | 0.0107 | 0.9693 | 0.9180 | 0.9333 | 0.9032 |
| 0.0293 | 3.0 | 285 | 0.0104 | 0.9693 | 0.9180 | 0.9333 | 0.9032 |
| 0.0267 | 4.0 | 380 | 0.0101 | 0.9693 | 0.9180 | 0.9333 | 0.9032 |
Base model
nickprock/setfit-italian-hate-speech
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="AIWizards/MultiPRIDE-DualEncoder-MainStage-FT-it")