Prompteam at UZH Shared Task 2026: RAG-Augmented Classification and Cosine-Filtered Relation Prediction for UN Resolutions

· Source: Paper Index on ACL Anthology · Field: Technology & Digital — Artificial Intelligence & Machine Learning, Data Science & Analytics · Depth: Expert, quick

Summary

Prompteam developed a system for the UZH ArgMining 2026 Shared Task, focusing on reconstructing argumentative structure within UN/UNESCO resolutions. The system addresses two primary challenges: classifying paragraph types and assigning thematic tags from a 141-label taxonomy, and predicting directed argumentative relations between paragraphs. Their pipeline integrates a quantised Qwen2.5-7B-Instruct model with retrieval-augmented generation (RAG), utilizing FAISS-indexed dense embeddings for few-shot prompting and pre-filtering tag candidates. For relation prediction, a sliding-window cosine pre-filter was employed to efficiently reduce the quadratic pair space. This parallelisable and fault-tolerant pipeline, featuring atomic checkpointing, successfully processed 2,959 paragraphs across three concurrent Kaggle T4 sessions, overcoming 12-hour GPU limits. The system secured 2nd place overall on the shared task leaderboard.

Key takeaway

For Machine Learning Engineers developing systems for complex document analysis, this work demonstrates effective strategies for large-scale text processing. You should consider integrating quantised LLMs like Qwen2.5-7B-Instruct with RAG for enhanced few-shot classification, especially when dealing with extensive taxonomies. Furthermore, applying a sliding-window cosine pre-filter can significantly reduce computational costs for relation prediction tasks, enabling efficient processing of thousands of paragraphs even under strict GPU time limits.

Key insights

Prompteam's system combines RAG with a quantised LLM and cosine filtering for efficient argumentative structure reconstruction in UN resolutions.

Principles

Method

The system classifies paragraph types and assigns tags using a quantised Qwen2.5-7B-Instruct model with RAG. Relation prediction uses a sliding-window cosine pre-filter.

In practice

Topics

Best for: Research Scientist, AI Scientist, Machine Learning Engineer, NLP Engineer

Related on AIssential

Open in AIssential →

Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.