Views
No views yet
Yes) or not (No). Samples labeled Can't tell in training are excluded from the binary setup.roberta-large + PEFT LoRA adapter (sequence classification, 2 labels).No (0), Yes (1).1from transformers import AutoModelForSequenceClassification, AutoTokenizer
2from peft import PeftModel
3
4repo_id = "MMHusnain/semeval26-psysemev-detection-2026-05-17-1834"
5base_model = "roberta-large"
6
7tokenizer = AutoTokenizer.from_pretrained(repo_id)
8model = AutoModelForSequenceClassification.from_pretrained(base_model, num_labels=2)
9model = PeftModel.from_pretrained(model, repo_id)AutoModelForSequenceClassification.from_pretrained(repo_id) only.train_and_infer_binary.py / infer_binary.py.Yes / No dev labels (e.g. dev_public.jsonl). Use the companion extraction models for span-level psycholinguistic markers.| Field | Value |
|---|---|
| Hub repo | MMHusnain/semeval26-psysemev-detection-2026-05-17-1834 |
| Upload batch | 2026-05-17-1834 |
| Base model | roberta-large |