LLM-INSTRUCT at UZH Shared Task 2026: Constraint-Aware Retrieval and Selective Debate for Paragraph-Level Argument Mining
Summary
LLM-INSTRUCT, the winning system for the UZH Shared Task at ArgMining 2026, tackles paragraph-level argument mining within UN and UNESCO resolutions. This complex task requires precise paragraph-type classification, the prediction of a subset from 141 official tags, and accurate directed relation prediction. All operations must strictly conform to a specified JSON schema and be performed using only open-weight models limited to 8B parameters. The LLM-INSTRUCT system approaches this as a constrained structured prediction problem. Its multi-stage methodology first narrows the candidate tag space using metadata-aware dense retrieval, then applies constrained decoding with per-dimension caps, and finally escalates only the most uncertain cases to a specialized three-agent debate branch for refined decision-making.
Key takeaway
For NLP Engineers developing argument mining systems under strict constraints, LLM-INSTRUCT demonstrates a robust approach. You should consider integrating metadata-aware dense retrieval to pre-filter candidate tags and implement constrained decoding to ensure output adheres to complex schemas. Furthermore, designing a multi-agent debate mechanism for ambiguous cases can significantly improve prediction accuracy and reliability, especially when working with open-weight models up to 8B parameters.
Key insights
The LLM-INSTRUCT system combines retrieval, constrained decoding, and multi-agent debate for accurate, constrained argument mining.
Principles
- Frame complex tasks as constrained structured prediction.
- Narrow candidate space early with metadata.
- Use multi-agent debate for uncertain cases.
Method
LLM-INSTRUCT performs metadata-aware dense retrieval to narrow tags, applies constrained decoding with per-dimension caps, and then uses a three-agent debate branch for uncertain predictions.
In practice
- Implement dense retrieval for tag filtering.
- Apply constrained decoding for schema adherence.
- Design multi-agent systems for ambiguity resolution.
Topics
- Argument Mining
- Constrained Structured Prediction
- LLM-INSTRUCT
- Dense Retrieval
- Multi-Agent Systems
- Open-Weight Models
Best for: Research Scientist, AI Scientist, Machine Learning Engineer, NLP Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.