# ScoreGate: Adaptive Chunk Selection for Retrieval-Augmented Generation via Dual-Score Statistical Fusion
> Ficha editorial pública de Research IA. Estado: Lectura primaria completa. La interpretación editorial no sustituye la fuente primaria.

- Página canónica: https://luiseduardodemiguel.com/research-ia/papers/scoregate-adaptive-chunk-selection-for-retrieval-augmented-generation-vi
- Fuente primaria: https://arxiv.org/abs/2606.14269
- Versión leída: v1
- Fuente comprobada: 2026-08-19 · lectura primaria completa; extracción editorial automatizada, revisión humana pendiente
- Autores: Karamvir Singh, Arvind Jain
- Fecha del corte: 12 JUNIO 2026.
- Área: RAG · EVALUACIÓN · CODING

## Tesis y contexto

Sustituye el top-K fijo en RAG por selección adaptativa de chunks usando dos señales ya disponibles: similitud bi-encoder y score cross-encoder. Reduce sobre-recuperación en preguntas simples e infra-recuperación en preguntas composicionales. En MS MARCO logra MRR\@10 de 0,401 con 35% menos chunks retenidos; en benchmark interno reduce tokens por query un 34,8%.

- Problema: El top-K fijo mete ruido, aumenta coste y falla cuando la complejidad de la pregunta cambia.
- Por qué importa: Es una mejora práctica de coste/calidad para cualquier RAG empresarial.

## Evidencia reportada

- **reported-result**: ScoreGate reduces average token consumption by 34.8% (637 \rightarrow 415 tokens per query) by discarding low-relevance chunks. [localizador](https://arxiv.org/html/2606.14269#S5)
- **reported-result**: The LLM Filter achieves MRR@10 = 0.361, below Standard Top-K (0.387). [localizador](https://arxiv.org/html/2606.14269#S5)
- **reported-result**: More importantly, the LLM Filter retains only 4.8 chunks/query on average—an aggressive truncation that improves precision (0.957) but discards MS MARCO-relevant passages that Standard Top-K retains, reducing MRR@10. [localizador](https://arxiv.org/html/2606.14269#S5)
- **reported-result**: This trade-off illustrates the core tension ScoreGate addresses: aggressive filtering gains precision at recall cost; ScoreGate achieves higher recall (0.871–0.889) than the LLM Filter (0.812) while preserving precision gains over Standard Top-K (0.712). [localizador](https://arxiv.org/html/2606.14269#S5)

## Lectura y límite

- Método: La lectura de 4 ScoreGate Method describe la intervención y su construcción: Figure 1 illustrates the complete ScoreGate pipeline. We use the term adaptive cardinality rather than filtering to emphasise that ScoreGate does not re-rank or post-process a fixed-size set—it determines the size of the set passed to the generator, which can be anywhere from 0 to MAX- K depending on the query’s score distribution. The distinction matters: a filter operates on a fixed- K input; ScoreGate replaces the fixed- K decision itself. We obtain thresholds \tau_{s} and \tau_{r} from query log statistics. \tau_{s} is the median bi-encoder cosine similarity over the top- N candidate set aggregated across a…
- Límite: La lectura primaria permite comprobar método y resultados en el HTML, pero no convierte sus conclusiones en validación independiente. La ficha no demuestra transferencia fuera de los datasets, modelos, herramientas y condiciones descritos en 5 Experiments.
- Confianza editorial: Media
- Limitación: El cierre de la fuente señala: Future directions. Evaluation on dedicated multi-hop reasoning benchmarks such as HotpotQA [ 15 ] and MuSiQue remains future work, as does extension to biomedical, legal, and scientific retrieval corpora. An empirically motivated cost-sensitive derivation of \theta_{B2} and \theta_{B3} from asymmetric false-positive/false-negative cost models could replace the current grid-search procedure and enable automatic per-domain calibration.
- Limitación: La ficha no demuestra transferencia fuera de los datasets, modelos, herramientas y condiciones descritos en 5 Experiments.

## Localizadores de evidencia
- [Fuente primaria · canonical](https://arxiv.org/abs/2606.14269): tipo abstract
- [HTML · lectura completa](https://arxiv.org/html/2606.14269): tipo abstract
- [Método · 4 ScoreGate Method](https://arxiv.org/html/2606.14269#S4): tipo section
- [Evaluación · 5 Experiments](https://arxiv.org/html/2606.14269#S5): tipo section
- [Cierre · 6 Discussion](https://arxiv.org/html/2606.14269#S6): tipo section

## Próxima prueba

- ¿La propuesta mejora chatbots documentales frente a la línea base actual?
- Métrica: Comparar la métrica principal de la fuente junto con calidad, coste, latencia y tasa de errores.
- Regla de parada: Parar si no aparece una mejora reproducible o si aumenta el riesgo, la complejidad o el coste sin compensación.

## Recursos reproducibles
- [the following issues](https://github.com/arXiv/html_feedback/issues)
- [list of packages that need conversion](https://github.com/brucemiller/LaTeXML/wiki/Porting-LaTeX-packages-for-LaTeXML)
- [developer contributions](https://github.com/brucemiller/LaTeXML/issues)

## Enlaces relacionados

- [SAG](https://luiseduardodemiguel.com/research-ia/markdown/papers/sag)
- [RAG-Stack](https://luiseduardodemiguel.com/research-ia/markdown/papers/rag-stack)
- [TTT-Embed](https://luiseduardodemiguel.com/research-ia/markdown/papers/ttt-embed)