UCSC NLP at SemEval-2026 Task 10: Boundary-Aware Span Extraction and RoBERTa Classification for Conspiracy Detection
Summary
UCSC NLP presented its systems for SemEval-2026 Task 10 (PsyCoMark), focusing on conspiracy marker extraction (Subtask 1) and document-level conspiracy detection (Subtask 2). For Subtask 1, a multi-label span classification approach was implemented, utilizing boundary-aware span representations, IoU≥0.95 positive labeling, hard-negative sampling, and containment-based non-maximum suppression. This system achieved a 0.2251 macro F1 score on the official test set, placing 7th. Subtask 2 employed an independent RoBERTa-large sequence classifier with label smoothing and a stratified train–validation split, which scored 0.7694 weighted F1 and ranked 12th. Both models were trained separately on a corpus of over 4,100 English Reddit submissions. Analysis revealed that entity-like roles like "Actor" and "Victim" were robustly detected, but abstract roles such as "Action," "Effect," and "Evidence" remained highly sensitive to boundary criteria.
Key takeaway
For NLP Engineers developing span extraction models, particularly for abstract semantic roles, you should prioritize precise boundary learning. Implement hard-negative sampling and strict IoU thresholds (e.g., IoU≥0.95) during training to improve span localization. Also, ensure your development metrics closely match the target evaluation criteria to avoid performance gaps. This approach can enhance the robustness of your models in complex information extraction tasks.
Key insights
Conspiracy detection benefits from explicit narrative role modeling, but abstract roles pose significant boundary extraction challenges.
Principles
- Hard-negative mining improves span boundary localization.
- Independent subtask models avoid error propagation.
- Evaluation metric alignment is crucial for development.
Method
For span extraction, multi-label classification over candidate spans uses IoU≥0.95 labeling, hard-negative sampling, and containment-based NMS. Document classification uses a RoBERTa-large sequence classifier with label smoothing.
In practice
- Use IoU≥0.95 for precise span boundary learning.
- Implement hard-negative sampling for boundary discrimination.
- Align validation metrics precisely with official evaluations.
Topics
- Conspiracy Detection
- Span Extraction
- RoBERTa
- SemEval-2026
- Multi-label Classification
- Natural Language Processing
Best for: Research Scientist, AI Scientist, NLP Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by cs.CL updates on arXiv.org.