Clutch or Cry at SemEval-2026 Task 12: Offline Retrieval-Augmented Generation with Frozen DeBERTa for Abductive Event Reasoning

· Source: Paper Index on ACL Anthology · Field: Technology & Digital — Artificial Intelligence & Machine Learning, Natural Language Processing · Depth: Expert, medium

Summary

Prasad et al. present a two-stage offline Retrieval-Augmented Generation (RAG) pipeline for SemEval-2026 Task 12 on abductive event reasoning. This system addresses issues encountered with direct fine-tuning of large language models, which suffered from severe overfitting due to limited training data, and smaller models, which failed under context-length constraints. Their approach employs an all-MiniLM-L6-v2 dense retriever to extract the single most relevant sentence (top-k=1). This retrieved evidence is then fed into a partially frozen DeBERTa-v3-Large classifier, trained using BCEWithLogitsLoss. By freezing the lower 12 layers of DeBERTa-v3-Large, the system effectively mitigates overfitting while retaining pre-trained semantic knowledge. This method successfully eliminates long-context truncation problems, reduces hallucination, and achieved an Exact Match accuracy of 0.72 on the official test set.

Key takeaway

For Machine Learning Engineers developing abductive reasoning systems with limited data, consider adopting a two-stage offline RAG pipeline. Your approach should involve a dense retriever for evidence extraction and a partially frozen DeBERTa-v3-Large classifier. Freezing the lower 12 layers can prevent overfitting and manage context-length constraints, potentially improving Exact Match accuracy and reducing hallucination in your models.

Key insights

A two-stage RAG pipeline with a partially frozen DeBERTa-v3-Large classifier effectively solves abductive event reasoning challenges by mitigating overfitting and context issues.

Principles

Method

A two-stage offline RAG pipeline: first, all-MiniLM-L6-v2 retrieves top-k=1 relevant sentence; second, a partially frozen DeBERTa-v3-Large classifier performs multi-label classification using BCEWithLogitsLoss.

In practice

Topics

Best for: AI Engineer, 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.