LLM-INSTRUCT at UZH Shared Task 2026: Constraint-Aware Retrieval and Selective Debate for Paragraph-Level Argument Mining
Summary
This paper describes LLM-INSTRUCT, the winning system for the UZH Shared Task at ArgMining 2026 on paragraph-level argument mining. The system uses constraint-aware retrieval and selective debate to improve accuracy and schema compliance.
View Cached Full Text
Cached at: 07/24/26, 05:15 AM
# LLM-Instruct at UZH Shared Task 2026: Constraint-Aware Retrieval and Selective Debate for Paragraph-Level Argument Mining
Source: [https://arxiv.org/html/2607.20430](https://arxiv.org/html/2607.20430)
Phuong Huu Vu Tran1,\*,\*\*, Long Minh Vo2,\*,\*\*, Son Nguyen Minh Le1, Hoang Van2,3 1Vietnamese\-German University, Vietnam 2RMIT University Vietnam, Vietnam 3VANGIA INNOVATIONS, Vietnam \*These authors contributed equally\. \*\*Corresponding authors: 10425032@student\.vgu\.edu\.vn, s4215945@rmit\.edu\.vn
###### Abstract
We presentLLM\-Instruct, the winning system for the UZH Shared Task at ArgMining 2026 on paragraph\-level argument mining in UN and UNESCO resolutions\. The task requires paragraph\-type classification, prediction of a subset of141141official tags, and directed relation prediction under a strict JSON schema setting using only open\-weight models up to 8B parameters\. We frame the task as constrained structured prediction\. The system first narrows the candidate tag space with metadata\-aware dense retrieval, then applies constrained decoding with per\-dimension caps, escalates only uncertain cases to a three\-agent debate branch, and finally validates the output schema\. On the official leaderboard,LLM\-Instructranked1st overall, with1st in F1and5th in LLM\-as\-a\-Judge\. During development, our configuration search further improved Task 1b Micro\-F1 from35\.83%35\.83\\%to40\.08%40\.08\\%while keeping the internal Task 2 score at4\.4214\.421\. The main lesson is simple: reducing the decision space before generation improves both accuracy and submission robustness\. Our code and supporting scripts are publicly available at:[https://github\.com/LLM\-Instruct\-at\-UZH\-Shared\-Task\-2026/Method](https://github.com/LLM-Instruct-at-UZH-Shared-Task-2026/Method)
LLM\-Instructat UZH Shared Task 2026: Constraint\-Aware Retrieval and Selective Debate for Paragraph\-Level Argument Mining
## 1Introduction
The UZH Shared Task at ArgMining 2026 asks participants to reconstruct argumentative structure in highly formal institutional texts\. For each paragraph, a system must determine whether it belongs to the preambular or operative part of a document, assign a subset of 141 predefined thematic tags, and recover directed argumentative relations to other paragraphs in the same document\. The task is difficult because the texts are long, the label inventory is closed and structured, and the submission format is strict: non\-conforming JSON is not evaluated\. In other words, the benchmark requires both semantic plausibility and schema\-valid output\.
This benchmark is better viewed as a constrained prediction task than as open\-ended text generation\. The model must reason over long institutional paragraphs, but it must also stay within a fixed label inventory, preserve paragraph indices, and produce schema\-valid predictions\. We therefore narrow the admissible output space before final generation\. Candidate retrieval narrows the tag space; organizer\-provided metadata is reused in retrieval and in per\-dimension caps; decoding is projected back to the retrieved set; and final validation enforces the submission schema\.
This paper makes three contributions\. First, it describes the end\-to\-end pipeline of the first\-ranked LLM\-INSTRUCT submission under the official shared\-task constraints\. Second, it identifies the key design choice behind the result: constraining admissible tags before generation instead of asking the model to search the full 141\-tag inventory\. Third, it reports the development trajectory that exposed the main failure mode of early runs, namely cross\-dimension over\-prediction\.
## 2Related Work
Our system combines ideas from constrained decoding, dense retrieval, debate\-style reasoning, and argument\-mining pipelines\. In particular, it is closest to settings that restrict admissible outputs before or during decoding\(Genget al\.,[2023](https://arxiv.org/html/2607.20430#bib.bib3); Liuet al\.,[2022](https://arxiv.org/html/2607.20430#bib.bib7)\), while also drawing on dense retrieval\(Karpukhinet al\.,[2020](https://arxiv.org/html/2607.20430#bib.bib5)\), debate\-style control\(Duet al\.,[2024](https://arxiv.org/html/2607.20430#bib.bib1)\), and prior argument\-mining work\(Lawrence and Reed,[2020](https://arxiv.org/html/2607.20430#bib.bib6); Stab and Gurevych,[2017](https://arxiv.org/html/2607.20430#bib.bib10)\)\. The difference in this shared task is that semantic plausibility alone is not enough: predictions must also satisfy a strict output schema\. For broader context, our pipeline also contrasts with end\-to\-end and text\-to\-text approaches to argument mining, including structured prediction as generation\(Paoliniet al\.,[2021](https://arxiv.org/html/2607.20430#bib.bib16)\), end\-to\-end universal argument mining\(Cao,[2023](https://arxiv.org/html/2607.20430#bib.bib17)\), fine\-tuned LLM pipelines for AM\(Cabessaet al\.,[2025](https://arxiv.org/html/2607.20430#bib.bib14)\), and recent LLM work on relation\-based argument mining\(Goruret al\.,[2025](https://arxiv.org/html/2607.20430#bib.bib15)\)\.
## 3Proposed Method
Figure[1](https://arxiv.org/html/2607.20430#S3.F1)summarizes the pipeline\. The final leaderboard run has three prediction stages followed by a submission\-safety layer\. We design the pipeline to satisfy these strict task constraints while keeping generation tightly controlled\. We describe its components next\.
Input documentFrench paragraph textEnglish translationdocument metadata1\. Type stagedeterministic heuristic*preambular*vs\.*operative*2\. Tag stageprototype retrieval: Dim \| Cat \| Codetop\-kkclosed set \+ capsLLM tag selectionSelective debate in final run3\-agent rebuttal on hard casesproject back to closed set3\. Relation stagelocality \+ similarity candidatesLLM scoring \+ edge capsSubmission safetyschema normalizationclosed\-set checksJSON validationFinal leaderboard pipeline
Figure 1:System pipeline\. The winning configuration reduces the decision space before final generation: dense retrieval creates an admissible tag set, organizer\-provided metadata is encoded in the tag prototypes and reused for per\-dimension caps, and high\-uncertainty cases are escalated to a three\-agent debate branch whose output is projected back onto the same admissible label set before final schema validation\.### 3\.1Type stage
Each paragraph is first classified aspreambularoroperative\. In development, we found that a deterministic heuristic was more stable than a pure LLM\-based alternative, so the final configuration keeps this step rule\-based\. Specifically, we classify paragraphs as operative when they match explicit numbered clause patterns or operative cue phrases, and otherwise default to preambular\. Table[1](https://arxiv.org/html/2607.20430#S3.T1)gives representative triggers used by the heuristic\. This reduces variance early in the pipeline and avoids propagating unstable type decisions to later stages\.
Table 1:Representative triggers used by the type heuristic\.
### 3\.2Metadata\-aware tag retrieval and decoding
The tag stage is the core of the system\. We read the official tag CSV and keep rows whose CODE field is neither empty nor NA\. For each remaining tagtt, letdtd\_\{t\},ctc\_\{t\}, andyty\_\{t\}denote its released dimension, category, and CODE fields\. We textualize the tag prototype as
pt=dt‖ct‖yt,p\_\{t\}=d\_\{t\}\\,\\\|\\,c\_\{t\}\\,\\\|\\,y\_\{t\},where∥\\\|denotes string concatenation\. We then embed bothptp\_\{t\}and the paragraph text with intfloat/e5\-base\-v2\(Wanget al\.,[2022](https://arxiv.org/html/2607.20430#bib.bib12)\), and cosine similarity is then used for dense top\-kkretrieval\(Wanget al\.,[2022](https://arxiv.org/html/2607.20430#bib.bib12); Karpukhinet al\.,[2020](https://arxiv.org/html/2607.20430#bib.bib5)\)\.
This design makes the retrieval process metadata\-aware: dimension and category information is present inside the prototype text before final tag generation\. The LLM never predicts over the full 141\-tag inventory\. Instead, it selects from the retrieved closed set\. In the final run, we apply a global cap of 5 tags per paragraph and a per\-dimension cap of 2 tags\. These fixed controls limit redundancy within a single semantic region and suppress cross\-dimension over\-prediction\. Finally, any decoded label outside the retrieved candidate set is rejected\. Together, these controls address the main failure mode observed during development, namely cross\-dimension over\-prediction\.
In addition to retrieving candidate tags, the final tag prompt includes up to three retrieved in\-context examples from the training release when their embedding similarity exceeds 0\.70\. These examples are used only as contextual evidence for how similar paragraphs are tagged; they do not expand the official tag inventory, and the final prediction is still projected back to the retrieved closed set\.
### 3\.3Selective debate branch
We also implement a hard\-case route with three open\-weight 8B agents\-Qwen3\-8B\(Yanget al\.,[2025](https://arxiv.org/html/2607.20430#bib.bib13)\), Llama\-3\.1\-8B\-Instruct\(Grattafioriet al\.,[2024](https://arxiv.org/html/2607.20430#bib.bib4)\), and Ministral\-8B\-Instruct\(Mistral AI,[2024](https://arxiv.org/html/2607.20430#bib.bib8)\)\-inspired by debate\-style reasoning\(Duet al\.,[2024](https://arxiv.org/html/2607.20430#bib.bib1)\)\.
Under this setup, a debate is triggered only for uncertain paragraphs, namely cases where the top\-1 tag margin is low under a development\-tuned routing rule, the heuristic and generator disagree on type, or the retrieved candidates show strong overlap across competing tag dimensions\. Each agent proposes a type/tag hypothesis, the agents exchange one focused rebuttal round, and a constrained selector accepts only labels that remain inside the retrieved candidate set while reapplying the same per\-dimension caps\. Put differently, debate never expands the admissible label set; it only helps resolve hard cases within the same retrieved closed set\.
### 3\.4Relation stage
Relation prediction starts from sparse candidate generation rather than exhaustive all\-pairs scoring\. For clarity, Table[2](https://arxiv.org/html/2607.20430#S3.T2)summarizes the four official relation labels used in Subtask 2\. For each source paragraph, we form a candidate target set by taking all targets within a locality window of one paragraph and adding the top six embedding\-similar targets in the same prediction instance\. This keeps nearby discourse links available while still allowing non\-adjacent semantic links\.
The Qwen3\-8B generator then scores each candidate pair using only the four official labels in Table[2](https://arxiv.org/html/2607.20430#S3.T2)or a no\-edge option\. We keep pairs whose confidence is at least0\.400\.40and cap each source paragraph at five outgoing edges, ranked by confidence\. These filters control the density of the relation graph and prevent relation prediction from becoming an unbounded all\-pairs generation problem\. Because the held\-out test release does not expose gold relation labels, we report relation\-output statistics rather than gold precision or recall for this stage\.
Table 2:Official relation labels in Subtask 2\.
### 3\.5Submission safety
The final stage focuses on submission validity\. It normalizes schema variants at ingestion, validates required keys before export, enforces the official relation label set, checks paragraph\-index consistency, and attempts to repair malformed JSON up to three times when necessary\. This component is essential because submissions that violate the required format do not receive an official score\.
## 4Experiments
### 4\.1Data and Official Setting
The shared task contains two subtasks\. Subtask 1 predicts paragraph type \(preambular or operative\) and a multi\-label subset of 141 official tags\. Subtask 2 predicts paragraph\-to\-paragraph links and labels each directed relation as contradictive, supporting, complemental, or modifying\. Official ranking averages an automated F1 metric and an LLM\-as\-a\-Judge score\. Because the public leaderboard reports ranks rather than absolute values, we report official rank positions and complement them with internal development metrics\.
The organizers release a largeunlabelledtraining set drawn from2,6952,695UN resolutions from the UN\-RES corpus associated with the SpiritRAG resource\(Gaoet al\.,[2025](https://arxiv.org/html/2607.20430#bib.bib18)\), together with a held\-out UNESCO evaluation split\. We use the task release as provided by the organizers and do not introduce additional training labels\. The texts are provided in French, with English translations provided by the task organizers to support non\-French\-speaking participants\. In our final configuration, Task 1 and Task 2 read the English field whenever it is available and otherwise fall back to the original French paragraph\. We prioritize English when available because the organizer\-provided translations simplified prompt design, qualitative inspection, and debugging for a non\-French\-speaking team\. The task page also releases a CSV file, evaluation\_dimensions\_updated\.csv, containing the official tag inventory together with dimension and category metadata\. Our method uses this file directly in both retrieval and decoding\. In the current analyzed artifact, all evaluated instances had English available, so we do not present a separate French\-only case study in this version\.
### 4\.2Models and Evaluation Protocol
The final system complies with the task policy of using only open\-weight models with at most 8B parameters\. The main generator is Qwen3\-8B in 4\-bit inference mode\(Yanget al\.,[2025](https://arxiv.org/html/2607.20430#bib.bib13)\)\. Dense retrieval uses intfloat/e5\-base\-v2\(Wanget al\.,[2022](https://arxiv.org/html/2607.20430#bib.bib12)\)\. Table[3](https://arxiv.org/html/2607.20430#S4.T3)reports the deterministic settings of the best performing internal configuration\.
We report two complementary views of performance\. First, we present the*official leaderboard results*on the test set\. Because the organizers have not yet released the exact official scores, we report rank positions rather than absolute scores\. Second, we report the*internal development trajectory*that guided system selection and revealed the main failure mode\. Following the shared\-task setup, our internal evaluation uses Task 1 scores together with a Task 2 score derived from judge\-based relation assessment\. Code, prompts, and supporting scripts are publicly available at[our GitHub repository](https://github.com/LLM-Instruct-at-UZH-Shared-Task-2026/Method)\.
Table 3:Key settings of the strongest internal configuration and the final leaderboard submission\.
### 4\.3Results
Table 4:Internal development trajectory\. T1a is paragraph\-type classification; T1b is tag assignment\. T2 Judge is the internal LLM\-as\-a\-Judge weighted relation score\. The main correction from Phase 1/2 to Phase 3 is precision recovery under a similar recall regime, consistent with the over\-prediction diagnosis\.#### 4\.3\.1Final Rank on the Official Leaderboard
Table[5](https://arxiv.org/html/2607.20430#S4.T5)gives the official leaderboard ranks\. The main empirical outcome is straightforward:LLM\-Instructranked1st overall\. The table also shows the strongest competing teams and our earlier submission,LLM\-Instruct\-2, which corresponds to the earlier Phase2\-style configuration\.
Table 5:Official leaderboard ranks from the UZH Shared Task\.∗LLM\-Instruct\-2 is our first submission and corresponds to the earlier Phase2\-style run\.This pattern is consistent with the design priorities of the system\. The gains appear strongest when the benchmark rewards valid structured output\. The official rank\-1 outcome therefore supports our central claim that schema\-aware control layers are useful for paragraph\-level argument mining under hard output constraints\. It also aligns with the internal trajectory in Table[4](https://arxiv.org/html/2607.20430#S4.T4), where the earlier submissionLLM\-Instruct\-2ranked below the finalLLM\-Instructsystem\.
#### 4\.3\.2Development trajectory
Table[4](https://arxiv.org/html/2607.20430#S4.T4)summarizes the main development phases\. We explain the phases explicitly because the most useful lesson from development is not merely that the final run scored higher, but*why*it scored higher\.
The pattern is informative\. Early recall\-oriented configurations raised coarse paragraph\-type scores but harmed Task 1b badly\. The reason was over\-prediction: loose tag selection created many cross\-dimension false positives\. The final run corrected this failure mode by combining metadata\-aware retrieval before generation, retrieved examples in the tag prompt, per\-dimension caps during selection, and strict closed\-set validation after decoding\.
#### 4\.3\.3Component diagnostics
We next report a compact component diagnosis, keeping only the results that show clear accuracy or robustness effects\. The subset ablations use the same stratified 12\-document subset and the same fast decoding setting, so they should be read as relative component evidence rather than absolute final\-system scores\. Details are in Table[6](https://arxiv.org/html/2607.20430#S4.T6)\.
Table 6:Subset component diagnostics for Task 1b on a stratified 12\-document subset under the same fast decoding setting\. Removing retrieved examples mainly reduces recall, while replacing metadata\-aware prototypes with CODE\-only prototypes substantially reduces both precision and F1\. Closed\-set filtering has little effect on F1 but is retained for schema safety\.The strongest component effect comes from metadata\-aware prototypes: replacing theDimension \| Category \| CODEprototype with CODE\-only text reduces subset Task 1b F1 by7\.747\.74points\. Retrieved examples are also useful: removing them lowers recall from22\.76%22\.76\\%to16\.68%16\.68\\%and F1 by5\.175\.17points\. By contrast, closed\-set filtering does not materially change subset F1, but it prevents out\-of\-candidate and invalid raw tags from reaching the final JSON\. A full\-corpus per\-dimension\-cap ablation shows a smaller regularization effect: removing the cap changes F1 from40\.26%40\.26\\%to39\.84%39\.84\\%and increases false positives from3,5293\{,\}529to3,5753\{,\}575\.
Box[4\.3\.3](https://arxiv.org/html/2607.20430#S4.SS3.SSS3)shows a representative output\.
Box 4\.3\.3: Representative model outputParagraph \(English\)\.“While acknowledging that the number of compulsory school years may vary between countries, \[the Conference\] considers it desirable that the number of actual years of schooling should in no case be less than seven, and notes that this minimum is already exceeded in many countries\.”Type\.operativeTags\.LAW\_REG, ISC\_1Outgoing relations\.2, 4, 7→\\rightarrowcomplemental\.Interpretation\.A legal\-regulatory recommendation aligned with nearby policy paragraphs\.
We also inspected Phase 3 errors by tag dimension\. The largest false\-positive counts came from broad dimensions such as Policy theme \(623 FP\), Teachers \(547 FP\), Legal frameworks \(388 FP\), Curriculum \(325 FP\), and Education level \(321 FP\)\. The most frequent false\-positive tags were LAW\_REG \(194 FP\), POL\_EIE \(161 FP\), T\_OTHER \(137 FP\), POL\_CUR \(110 FP\), and PEDAG\_OTHER \(93 FP\)\. This supports the over\-prediction diagnosis: broad policy\-related dimensions are semantically close to many paragraphs and are therefore easy to over\-select under recall\-oriented prompting\.
Performance also varied strongly by tag frequency\. For tags appearing more than 20 times in the internal reference, Phase 3 achieved 57\.22% precision, 33\.71% recall, and 42\.43% F1\. For medium\-frequency tags with 6–20 references, F1 dropped to 16\.61%; for rare tags with at most five references, F1 was only 2\.51%\. Thus, the constraint\-aware design reduced broad over\-prediction but did not solve sparse\-label recognition\.
More concretely, disabling closed\-set filtering introduced 8 official tags outside the retrieved candidate set and 5 invalid raw tags in the trace, even though the subset F1 changed only marginally\. We therefore retain this step as a reliability guard rather than an accuracy\-driven component\.
### 4\.4Output statistics
Operationally, the final submission JSON is organized by recommendation\-level TEXT\_ID values\. The final artifact contains 89 prediction instances spanning 44 unique source documents, where the source document title is read from METADATA\.structure\.doc\_title\. All runtime and output counts reported below are computed at this prediction\-instance level\.
Because the held\-out test release does not expose gold relation labels, we cannot compute candidate recall or per\-label precision/recall against gold for the final submission\. We therefore report descriptive output statistics directly from the final submission artifact\. Across these prediction instances, the final system produced 13,323 directed edges among 132,840 possible within\-instance paragraph pairs, for a graph density of10\.03%10\.03\\%\. All four official relation labels are present: 8,949complemental, 4,199supporting, 160modifying, and 15contradictive\. Non\-adjacent links were common: 9,566 edges, or71\.80%71\.80\\%, spanned more than one paragraph\.
### 4\.5Compute report
The final run was executed on 2×\\timesNVIDIA GeForce RTX 3090 24GB GPUs and processed the8989prediction instances in 1:42:03, averaging68\.8168\.81seconds per prediction instance,2\.072\.07seconds per paragraph, or34\.534\.5minutes per 1k paragraphs\.
## 5Discussion
### 5\.1System Strengths and Advancements
Four implementation choices appear central\. First, metadata\-aware tag prototypes are important: the CODE\-only diagnostic produced the largest observed subset drop\. Second, retrieved examples improve recall by supplying paragraph\-level usage context without expanding the label inventory\. Third, admissibility rules improve reliability by projecting predictions back to the retrieved official candidate set\. Fourth, per\-dimension caps act as a modest regularizer, reducing false positives on the full corpus even though their absolute F1 effect is smaller than the retrieval\-related components\.
### 5\.2Limitations
There are three main limitations in this work\.First, the relation stage is less mature than the tag stage and remains sensitive to candidate generation and confidence thresholds\.Second, our component diagnostics are not a full factorial ablation\. Several toggles are evaluated on a stratified subset under a faster decoding setting, so they should be interpreted as relative component evidence rather than absolute final\-system scores\.Third, the default path prioritizes English translations when available, so additional cross\-lingual analysis on French\-only cases would be valuable in future work\.
## 6Conclusion
We presented a compact, constraint\-aware, and submission\-safe system for paragraph\-level argument mining in UN and UNESCO resolutions\. The system combines metadata\-aware dense retrieval, constraint\-aware decoding, selective debate for high\-uncertainty cases, sparse relation prediction, and explicit schema validation\. Taken together, these results suggest that under hard output constraints, carefully designed control layers and selectively applied multi\-agent reasoning can be as important as stronger generation\.
##### Ethics Statement\.
Our system is intended for research benchmarking on institutional text, not autonomous legal or policy decision\-making\. Its design keeps intermediate decisions auditable and makes its constraints explicit\.
## References
- Argument mining with fine\-tuned large language models\.InProceedings of the 31st International Conference on Computational Linguistics,O\. Rambow, L\. Wanner, M\. Apidianaki, H\. Al\-Khalifa, B\. D\. Eugenio, and S\. Schockaert \(Eds\.\),Abu Dhabi, UAE,pp\. 6624–6635\.External Links:[Link](https://aclanthology.org/2025.coling-main.442/)Cited by:[§2](https://arxiv.org/html/2607.20430#S2.p1.1)\.
- L\. Cao \(2023\)AutoAM: an end\-to\-end neural model for automatic and universal argument mining\.InAdvanced Data Mining and Applications,X\. Yang, H\. Suhartanto, G\. Wang, B\. Wang, J\. Jiang, B\. Li, H\. Zhu, and N\. Cui \(Eds\.\),Cham,pp\. 517–531\.External Links:ISBN 978\-3\-031\-46674\-8Cited by:[§2](https://arxiv.org/html/2607.20430#S2.p1.1)\.
- Y\. Du, S\. Li, A\. Torralba, J\. B\. Tenenbaum, and I\. Mordatch \(2024\)Improving factuality and reasoning in language models through multiagent debate\.InProceedings of the 41st International Conference on Machine Learning,ICML’24\.Cited by:[§2](https://arxiv.org/html/2607.20430#S2.p1.1),[§3\.3](https://arxiv.org/html/2607.20430#S3.SS3.p1.1)\.
- Y\. Gao, F\. Winiger, P\. Montjourides, A\. Shaitarova, N\. Gu, S\. Peng\-Keller, and G\. Schneider \(2025\)SpiritRAG: A Q&A System for Religion and Spirituality in the United Nations Archive\.InProceedings of the 2025 Conference on Empirical Methods in Natural Language Processing: System Demonstrations,pp\. 26–41\.Cited by:[§4\.1](https://arxiv.org/html/2607.20430#S4.SS1.p2.1)\.
- S\. Geng, M\. Josifoski, M\. Peyrard, and R\. West \(2023\)Grammar\-constrained decoding for structured NLP tasks without finetuning\.InProceedings of the 2023 Conference on Empirical Methods in Natural Language Processing,H\. Bouamor, J\. Pino, and K\. Bali \(Eds\.\),Singapore,pp\. 10932–10952\.External Links:[Link](https://aclanthology.org/2023.emnlp-main.674/),[Document](https://dx.doi.org/10.18653/v1/2023.emnlp-main.674)Cited by:[§2](https://arxiv.org/html/2607.20430#S2.p1.1)\.
- D\. Gorur, A\. Rago, and F\. Toni \(2025\)Can large language models perform relation\-based argument mining?\.InProceedings of the 31st International Conference on Computational Linguistics,O\. Rambow, L\. Wanner, M\. Apidianaki, H\. Al\-Khalifa, B\. D\. Eugenio, and S\. Schockaert \(Eds\.\),Abu Dhabi, UAE,pp\. 8518–8534\.External Links:[Link](https://aclanthology.org/2025.coling-main.569/)Cited by:[§2](https://arxiv.org/html/2607.20430#S2.p1.1)\.
- A\. Grattafiori, A\. Dubey, A\. Jauhri, A\. Pandey, A\. Kadian, A\. Al\-Dahle, A\. Letman, A\. Mathur, A\. Schelten, A\. Vaughan, A\. Yang, A\. Fan, A\. Goyal, A\. Hartshorn, A\. Yang, A\. Mitra, A\. Sravankumar, A\. Korenev, A\. Hinsvark, A\. Rao, A\. Zhang, A\. Rodriguez, A\. Gregerson, A\. Spataru, B\. Roziere, B\. Biron, B\. Tang, B\. Chern, C\. Caucheteux, C\. Nayak, C\. Bi, C\. Marra, C\. McConnell, C\. Keller, C\. Touret, C\. Wu, C\. Wong, C\. C\. Ferrer, C\. Nikolaidis, D\. Allonsius, D\. Song, D\. Pintz, D\. Livshits, D\. Wyatt, D\. Esiobu, D\. Choudhary, D\. Mahajan, D\. Garcia\-Olano, D\. Perino, D\. Hupkes, E\. Lakomkin, E\. AlBadawy, E\. Lobanova, E\. Dinan, E\. M\. Smith, F\. Radenovic, F\. Guzmán, F\. Zhang, G\. Synnaeve, G\. Lee, G\. L\. Anderson, G\. Thattai, G\. Nail, G\. Mialon, G\. Pang, G\. Cucurell, H\. Nguyen, H\. Korevaar, H\. Xu, H\. Touvron, I\. Zarov, I\. A\. Ibarra, I\. Kloumann, I\. Misra, I\. Evtimov, J\. Zhang, J\. Copet, J\. Lee, J\. Geffert, J\. Vranes, J\. Park, J\. Mahadeokar, J\. Shah, J\. van der Linde, J\. Billock, J\. Hong, J\. Lee, J\. Fu, J\. Chi, J\. Huang, J\. Liu, J\. Wang, J\. Yu, J\. Bitton, J\. Spisak, J\. Park, J\. Rocca, J\. Johnstun, J\. Saxe, J\. Jia, K\. V\. Alwala, K\. Prasad, K\. Upasani, K\. Plawiak, K\. Li, K\. Heafield, K\. Stone, K\. El\-Arini, K\. Iyer, K\. Malik, K\. Chiu, K\. Bhalla, K\. Lakhotia, L\. Rantala\-Yeary, L\. van der Maaten, L\. Chen, L\. Tan, L\. Jenkins, L\. Martin, L\. Madaan, L\. Malo, L\. Blecher, L\. Landzaat, L\. de Oliveira, M\. Muzzi, M\. Pasupuleti, M\. Singh, M\. Paluri, M\. Kardas, M\. Tsimpoukelli, M\. Oldham, M\. Rita, M\. Pavlova, M\. Kambadur, M\. Lewis, M\. Si, M\. K\. Singh, M\. Hassan, N\. Goyal, N\. Torabi, N\. Bashlykov, N\. Bogoychev, N\. Chatterji, N\. Zhang, O\. Duchenne, O\. Çelebi, P\. Alrassy, P\. Zhang, P\. Li, P\. Vasic, P\. Weng, P\. Bhargava, P\. Dubal, P\. Krishnan, P\. S\. Koura, P\. Xu, Q\. He, Q\. Dong, R\. Srinivasan, R\. Ganapathy, R\. Calderer, R\. S\. Cabral, R\. Stojnic, R\. Raileanu, R\. Maheswari, R\. Girdhar, R\. Patel, R\. Sauvestre, R\. Polidoro, R\. Sumbaly, R\. Taylor, R\. Silva, R\. Hou, R\. Wang, S\. Hosseini, S\. Chennabasappa, S\. Singh, S\. Bell, S\. S\. Kim, S\. Edunov, S\. Nie, S\. Narang, S\. Raparthy, S\. Shen, S\. Wan, S\. Bhosale, S\. Zhang, S\. Vandenhende, S\. Batra, S\. Whitman, S\. Sootla, S\. Collot, S\. Gururangan, S\. Borodinsky, T\. Herman, T\. Fowler, T\. Sheasha, T\. Georgiou, T\. Scialom, T\. Speckbacher, T\. Mihaylov, T\. Xiao, U\. Karn, V\. Goswami, V\. Gupta, V\. Ramanathan, V\. Kerkez, V\. Gonguet, V\. Do, V\. Vogeti, V\. Albiero, V\. Petrovic, W\. Chu, W\. Xiong, W\. Fu, W\. Meers, X\. Martinet, X\. Wang, X\. Wang, X\. E\. Tan, X\. Xia, X\. Xie, X\. Jia, X\. Wang, Y\. Goldschlag, Y\. Gaur, Y\. Babaei, Y\. Wen, Y\. Song, Y\. Zhang, Y\. Li, Y\. Mao, Z\. D\. Coudert, Z\. Yan, Z\. Chen, Z\. Papakipos, A\. Singh, A\. Srivastava, A\. Jain, A\. Kelsey, A\. Shajnfeld, A\. Gangidi, A\. Victoria, A\. Goldstand, A\. Menon, A\. Sharma, A\. Boesenberg, A\. Baevski, A\. Feinstein, A\. Kallet, A\. Sangani, A\. Teo, A\. Yunus, A\. Lupu, A\. Alvarado, A\. Caples, A\. Gu, A\. Ho, A\. Poulton, A\. Ryan, A\. Ramchandani, A\. Dong, A\. Franco, A\. Goyal, A\. Saraf, A\. Chowdhury, A\. Gabriel, A\. Bharambe, A\. Eisenman, A\. Yazdan, B\. James, B\. Maurer, B\. Leonhardi, B\. Huang, B\. Loyd, B\. D\. Paola, B\. Paranjape, B\. Liu, B\. Wu, B\. Ni, B\. Hancock, B\. Wasti, B\. Spence, B\. Stojkovic, B\. Gamido, B\. Montalvo, C\. Parker, C\. Burton, C\. Mejia, C\. Liu, C\. Wang, C\. Kim, C\. Zhou, C\. Hu, C\. Chu, C\. Cai, C\. Tindal, C\. Feichtenhofer, C\. Gao, D\. Civin, D\. Beaty, D\. Kreymer, D\. Li, D\. Adkins, D\. Xu, D\. Testuggine, D\. David, D\. Parikh, D\. Liskovich, D\. Foss, D\. Wang, D\. Le, D\. Holland, E\. Dowling, E\. Jamil, E\. Montgomery, E\. Presani, E\. Hahn, E\. Wood, E\. Le, E\. Brinkman, E\. Arcaute, E\. Dunbar, E\. Smothers, F\. Sun, F\. Kreuk, F\. Tian, F\. Kokkinos, F\. Ozgenel, F\. Caggioni, F\. Kanayet, F\. Seide, G\. M\. Florez, G\. Schwarz, G\. Badeer, G\. Swee, G\. Halpern, G\. Herman, G\. Sizov, Guangyi, Zhang, G\. Lakshminarayanan, H\. Inan, H\. Shojanazeri, H\. Zou, H\. Wang, H\. Zha, H\. Habeeb, H\. Rudolph, H\. Suk, H\. Aspegren, H\. Goldman, H\. Zhan, I\. Damlaj, I\. Molybog, I\. Tufanov, I\. Leontiadis, I\. Veliche, I\. Gat, J\. Weissman, J\. Geboski, J\. Kohli, J\. Lam, J\. Asher, J\. Gaya, J\. Marcus, J\. Tang, J\. Chan, J\. Zhen, J\. Reizenstein, J\. Teboul, J\. Zhong, J\. Jin, J\. Yang, J\. Cummings, J\. Carvill, J\. Shepard, J\. McPhie, J\. Torres, J\. Ginsburg, J\. Wang, K\. Wu, K\. H\. U, K\. Saxena, K\. Khandelwal, K\. Zand, K\. Matosich, K\. Veeraraghavan, K\. Michelena, K\. Li, K\. Jagadeesh, K\. Huang, K\. Chawla, K\. Huang, L\. Chen, L\. Garg, L\. A, L\. Silva, L\. Bell, L\. Zhang, L\. Guo, L\. Yu, L\. Moshkovich, L\. Wehrstedt, M\. Khabsa, M\. Avalani, M\. Bhatt, M\. Mankus, M\. Hasson, M\. Lennie, M\. Reso, M\. Groshev, M\. Naumov, M\. Lathi, M\. Keneally, M\. Liu, M\. L\. Seltzer, M\. Valko, M\. Restrepo, M\. Patel, M\. Vyatskov, M\. Samvelyan, M\. Clark, M\. Macey, M\. Wang, M\. J\. Hermoso, M\. Metanat, M\. Rastegari, M\. Bansal, N\. Santhanam, N\. Parks, N\. White, N\. Bawa, N\. Singhal, N\. Egebo, N\. Usunier, N\. Mehta, N\. P\. Laptev, N\. Dong, N\. Cheng, O\. Chernoguz, O\. Hart, O\. Salpekar, O\. Kalinli, P\. Kent, P\. Parekh, P\. Saab, P\. Balaji, P\. Rittner, P\. Bontrager, P\. Roux, P\. Dollar, P\. Zvyagina, P\. Ratanchandani, P\. Yuvraj, Q\. Liang, R\. Alao, R\. Rodriguez, R\. Ayub, R\. Murthy, R\. Nayani, R\. Mitra, R\. Parthasarathy, R\. Li, R\. Hogan, R\. Battey, R\. Wang, R\. Howes, R\. Rinott, S\. Mehta, S\. Siby, S\. J\. Bondu, S\. Datta, S\. Chugh, S\. Hunt, S\. Dhillon, S\. Sidorov, S\. Pan, S\. Mahajan, S\. Verma, S\. Yamamoto, S\. Ramaswamy, S\. Lindsay, S\. Lindsay, S\. Feng, S\. Lin, S\. C\. Zha, S\. Patil, S\. Shankar, S\. Zhang, S\. Zhang, S\. Wang, S\. Agarwal, S\. Sajuyigbe, S\. Chintala, S\. Max, S\. Chen, S\. Kehoe, S\. Satterfield, S\. Govindaprasad, S\. Gupta, S\. Deng, S\. Cho, S\. Virk, S\. Subramanian, S\. Choudhury, S\. Goldman, T\. Remez, T\. Glaser, T\. Best, T\. Koehler, T\. Robinson, T\. Li, T\. Zhang, T\. Matthews, T\. Chou, T\. Shaked, V\. Vontimitta, V\. Ajayi, V\. Montanez, V\. Mohan, V\. S\. Kumar, V\. Mangla, V\. Ionescu, V\. Poenaru, V\. T\. Mihailescu, V\. Ivanov, W\. Li, W\. Wang, W\. Jiang, W\. Bouaziz, W\. Constable, X\. Tang, X\. Wu, X\. Wang, X\. Wu, X\. Gao, Y\. Kleinman, Y\. Chen, Y\. Hu, Y\. Jia, Y\. Qi, Y\. Li, Y\. Zhang, Y\. Zhang, Y\. Adi, Y\. Nam, Yu, Wang, Y\. Zhao, Y\. Hao, Y\. Qian, Y\. Li, Y\. He, Z\. Rait, Z\. DeVito, Z\. Rosnbrick, Z\. Wen, Z\. Yang, Z\. Zhao, and Z\. Ma \(2024\)The llama 3 herd of models\.External Links:2407\.21783,[Link](https://arxiv.org/abs/2407.21783)Cited by:[§3\.3](https://arxiv.org/html/2607.20430#S3.SS3.p1.1)\.
- V\. Karpukhin, B\. Oguz, S\. Min, P\. Lewis, L\. Wu, S\. Edunov, D\. Chen, and W\. Yih \(2020\)Dense passage retrieval for open\-domain question answering\.InProceedings of the 2020 Conference on Empirical Methods in Natural Language Processing \(EMNLP\),B\. Webber, T\. Cohn, Y\. He, and Y\. Liu \(Eds\.\),Online,pp\. 6769–6781\.External Links:[Link](https://aclanthology.org/2020.emnlp-main.550/),[Document](https://dx.doi.org/10.18653/v1/2020.emnlp-main.550)Cited by:[§2](https://arxiv.org/html/2607.20430#S2.p1.1),[§3\.2](https://arxiv.org/html/2607.20430#S3.SS2.p1.7)\.
- J\. Lawrence and C\. Reed \(2020\)Argument mining: a survey\.Computational Linguistics45\(4\),pp\. 765–818\.External Links:ISSN 0891\-2017,[Document](https://dx.doi.org/10.1162/coli%5Fa%5F00364),[Link](https://doi.org/10.1162/coli_a_00364),https://direct\.mit\.edu/coli/article\-pdf/45/4/765/1847520/coli\_a\_00364\.pdfCited by:[§2](https://arxiv.org/html/2607.20430#S2.p1.1)\.
- T\. Liu, Y\. E\. Jiang, N\. Monath, R\. Cotterell, and M\. Sachan \(2022\)Autoregressive structured prediction with language models\.InFindings of the Association for Computational Linguistics: EMNLP 2022,Y\. Goldberg, Z\. Kozareva, and Y\. Zhang \(Eds\.\),Abu Dhabi, United Arab Emirates,pp\. 993–1005\.External Links:[Link](https://aclanthology.org/2022.findings-emnlp.70/),[Document](https://dx.doi.org/10.18653/v1/2022.findings-emnlp.70)Cited by:[§2](https://arxiv.org/html/2607.20430#S2.p1.1)\.
- Mistral AI \(2024\)Model card for ministral\-8b\-instruct\-2410\.Note:Accessed 2026\-04\-16External Links:[Link](https://huggingface.co/mistralai/Ministral-8B-Instruct-2410)Cited by:[§3\.3](https://arxiv.org/html/2607.20430#S3.SS3.p1.1)\.
- G\. Paolini, B\. Athiwaratkun, J\. Krone, J\. Ma, A\. Achille, R\. Anubhai, C\. N\. dos Santos, B\. Xiang, and S\. Soatto \(2021\)Structured prediction as translation between augmented natural languages\.External Links:2101\.05779,[Link](https://arxiv.org/abs/2101.05779)Cited by:[§2](https://arxiv.org/html/2607.20430#S2.p1.1)\.
- C\. Stab and I\. Gurevych \(2017\)Parsing argumentation structures in persuasive essays\.Computational Linguistics43\(3\),pp\. 619–659\.External Links:ISSN 0891\-2017,[Document](https://dx.doi.org/10.1162/COLI%5Fa%5F00295),[Link](https://doi.org/10.1162/COLI_a_00295),https://direct\.mit\.edu/coli/article\-pdf/43/3/619/1808352/coli\_a\_00295\.pdfCited by:[§2](https://arxiv.org/html/2607.20430#S2.p1.1)\.
- L\. Wang, N\. Yang, X\. Huang, B\. Jiao, L\. Yang, D\. Jiang, R\. Majumder, and F\. Wei \(2022\)Text embeddings by weakly\-supervised contrastive pre\-training\.arXiv preprint arXiv:2212\.03533\.Cited by:[§3\.2](https://arxiv.org/html/2607.20430#S3.SS2.p1.7),[§4\.2](https://arxiv.org/html/2607.20430#S4.SS2.p1.1)\.
- A\. Yang, A\. Li, B\. Yang, B\. Zhang, B\. Hui, B\. Zheng, B\. Yu, C\. Gao, C\. Huang, C\. Lv, C\. Zheng, D\. Liu, F\. Zhou, F\. Huang, F\. Hu, H\. Ge, H\. Wei, H\. Lin, J\. Tang, J\. Yang, J\. Tu, J\. Zhang, J\. Yang, J\. Yang, J\. Zhou, J\. Zhou, J\. Lin, K\. Dang, K\. Bao, K\. Yang, L\. Yu, L\. Deng, M\. Li, M\. Xue, M\. Li, P\. Zhang, P\. Wang, Q\. Zhu, R\. Men, R\. Gao, S\. Liu, S\. Luo, T\. Li, T\. Tang, W\. Yin, X\. Ren, X\. Wang, X\. Zhang, X\. Ren, Y\. Fan, Y\. Su, Y\. Zhang, Y\. Zhang, Y\. Wan, Y\. Liu, Z\. Wang, Z\. Cui, Z\. Zhang, Z\. Zhou, and Z\. Qiu \(2025\)Qwen3 technical report\.External Links:2505\.09388,[Link](https://arxiv.org/abs/2505.09388)Cited by:[§3\.3](https://arxiv.org/html/2607.20430#S3.SS3.p1.1),[§4\.2](https://arxiv.org/html/2607.20430#S4.SS2.p1.1)\.Similar Articles
Schema-Constrained Document-Level Event Argument Extraction with Lightweight LLM Fine-Tuning
This paper proposes a schema-constrained document-level event argument extraction method using fine-tuned mid-sized open LLMs with LoRA, role-set injection, and deterministic decoding, achieving state-of-the-art results on MAVEN-ARG.
RASC+: Retrieval-Constrained LLM Adjudication for Clinical Value Set Authoring
This paper introduces RASC+, a retrieval-constrained LLM adjudication method for clinical value set authoring that improves candidate-pool recall and selection precision over prior RASC baselines, demonstrating that blinded LLM adjudication with Qwen3-based retrieval significantly outperforms direct generation.
SCICONVBENCH: Benchmarking LLMs on Multi-Turn Clarification for Task Formulation in Computational Science
SCICONVBENCH is a benchmark that evaluates LLMs on multi-turn clarification for ill-posed scientific queries across computational science domains, finding that even frontier models struggle with disambiguation and frequently make silent assumptions.
Integrating knowledge graphs and multilingual scholarly corpora for domain-adaptive LLMs in SSH
This paper presents a use case from the European project LLMs4EU and ALT-EDIC infrastructure, focusing on adapting foundation models to Social Sciences and Humanities (SSH) research practices by integrating knowledge graphs and multilingual scholarly corpora. The approach aims to support tasks like question answering and literature review while ensuring domain sensitivity and regulatory compliance.
A Tree-of-Thoughts Inspired Hybrid Approach for Legal Case Judgement Summarization using LLMs
Proposes a tree-of-thoughts inspired extractive-abstractive approach for legal case judgement summarization using LLMs, with experiments on DeepSeek and LLama showing improved summaries over extractive or abstractive methods alone.