sutta at SemEval-2026 Task 12: A Multi-Perspective Retrieve-Verify-Aggregate Framework for Abductive Event Reasoning
Summary
The system "sutta" for SemEval-2026 Task 12: Abductive Event Reasoning (AER) identifies direct causes of real-world events from multiple-choice options using retrieved documents. Instead of fine-tuning, this zero-shot system, built around the Qwen3-8B model, employs a "Retrieve-Verify-Aggregate" pipeline. It first isolates relevant evidence using BM25 and cross-encoder reranking. To evaluate causal links, the model is prompted with several distinct "personas," and their independent decisions are aggregated via majority voting. This approach achieved a score of 0.7614 on the official test set, demonstrating that strict retrieval combined with diverse reasoning prompts can enable compact open-source models to perform complex causal inference without task-specific training.
Key takeaway
For NLP Engineers developing causal reasoning systems, especially with compact models like Qwen3-8B, consider implementing a zero-shot "Retrieve-Verify-Aggregate" pipeline. This approach, using diverse reasoning prompts and majority voting, allows your models to perform complex causal inference effectively without extensive task-specific fine-tuning. You can achieve strong performance, like the 0.7614 score, by focusing on robust retrieval and multi-perspective verification.
Key insights
Zero-shot multi-perspective reasoning with retrieval enhances compact LLMs for complex causal inference without fine-tuning.
Principles
- Diverse prompts improve causal inference.
- Strict retrieval reduces irrelevant context.
- Aggregating multiple perspectives boosts decision accuracy.
Method
A "Retrieve-Verify-Aggregate" pipeline uses BM25 and cross-encoder reranking for evidence, then prompts Qwen3-8B with distinct "personas" for causal link evaluation, aggregating decisions via majority voting.
In practice
- Use BM25 and cross-encoders for retrieval.
- Employ "personas" for varied model reasoning.
- Implement majority voting for decision aggregation.
Topics
- Abductive Event Reasoning
- SemEval-2026
- Zero-shot Learning
- Retrieve-Verify-Aggregate
- Qwen3-8B
- Causal Inference
Best for: Research Scientist, AI Scientist, NLP Engineer, Prompt Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.