English static mirror for SEO/GEO · AI-assisted translation · Read Chinese original

Open-Retrieval Conversational Question Answering (ORConvQA) — SIGIR 2020

Forum topic · 小凯 · 2026-07-05

Summary

This forum post summarizes the SIGIR 2020 paper "Open-Retrieval Conversational Question Answering" (ORConvQA), which introduces the task of answering conversational questions over a large collection of unstructured documents rather than a fixed passage set. The work presents an end-to-end neural system that combines a history-modeling retriever, a reranker, and a reader to find and extract answers across multiple dialogue turns. The post contextualizes the paper within modern conversational search and retrieval-augmented generation (RAG) research, outlining the standard pipeline of query representation, retrieval, reranking, and answer generation, along with evaluation practices using datasets and ranking metrics such as MRR and Recall@k. It also discusses engineering considerations for deploying retrieval pipelines—latency budgets, index freshness, hallucination and safety risks, and cost control—and connects the paper to related work on agentic conversational search, LLM-based retrievers, and collaborative search agents. Note that the original post is largely a template-based analysis; quantitative results should be verified against the original PDF available via the ACM Digital Library (DOI: 10.1145/3397271.3401110).

Open-Retrieval Conversational Question Answering (ORConvQA) — SIGIR 2020

Overview

This entry discusses the SIGIR 2020 paper "Open-Retrieval Conversational Question Answering", published in the ACM Digital Library:

  • Paper link: https://dl.acm.org/doi/abs/10.1145/3397271.3401110
  • Venue: SIGIR 2020
  • Topic areas: Conversational Search, Evaluation of Search Engines
  • Problem and Motivation

    The paper addresses open-retrieval conversational question answering: answering multi-turn user questions by searching over a large, open collection of documents rather than a small fixed set of passages. This setting combines the challenges of conversational query understanding (resolving coreference and context across turns) with large-scale open retrieval.

    Traditional pipelines treat retrieval, ranking, and generation as isolated stages; this line of work motivated more integrated, end-to-end approaches that now underpin modern retrieval-augmented generation (RAG) systems.

    Typical System Architecture

    The standard technical route described in this research area follows four stages:

    1. Input and representation — encode the (rewritten) query, documents, and conversational history into dense or sparse representations. 2. Core modules — a retriever, a reranker, and a reader/answer extractor chained together; optionally memory or history-modeling components. 3. Learning strategy — supervised fine-tuning, contrastive learning, distillation, or reinforcement learning. 4. Inference — single-pass or iterative retrieval, early stopping, and latency/budget control.

    Evaluation

    Typical experimental setups in this area include:

  • Datasets: large QA collections such as Natural Questions and MS MARCO, plus conversational QA benchmarks.
  • Metrics: MRR, Recall@k, nDCG@10, and answer exact match / F1.
  • Baselines: BM25, dense retrieval, cross-encoder reranking, and no-retrieval LLM baselines.
  • Ablations: contribution of retrieval depth, reranking, and history modeling to final quality.
  • Exact numerical results should be verified against the original PDF; this post summarizes the experimental design logic based on the abstract and public metadata.

    Key Takeaways for Search / Rec / Personalization

    1. Architecture: cascaded retrieve → rerank → generate remains mainstream, with agentic paradigms making retrieval strategy itself learnable. 2. Data: high-quality instruction data and session logs are as important as model architecture. 3. Evaluation: offline metrics increasingly diverge from online satisfaction; LLM-as-judge needs human cross-validation. 4. Deployment: latency, cost, interpretability, and safety are hard constraints in production systems.

    Engineering Checklist

    | Area | Question | Suggestion | |------|----------|------------| | Data | PII in training/index? Version control? | Partitioned indexes, anonymization, rollback-able embedding versions | | Latency | p99 budget? Retrieval steps? | Cascade + early stop, query caching, async reranking | | Quality | Do offline gains translate online? | Interleaving experiments, human audits, citation checks | | Safety | Poisoning/bias from open retrieval? | Source allowlists, adversarial detection, output filtering | | Cost | Token/GPU cost per query? | Small-model routing, distillation, hybrid sparse+dense retrieval |

    Glossary

    | Term | Meaning | |------|---------| | IR | Information Retrieval | | RAG | Retrieval-Augmented Generation | | nDCG | Normalized Discounted Cumulative Gain | | Agentic Search | Search modeled as sequential decision-making with tool calls | | Gen-IR | Generative Information Retrieval |

    Related Entries

  • A Survey of Conversational Search (Sep 2025, ACM)
  • Engineering Conversational Search Systems: A Review of Applications (arXiv:2407.00997)
  • Agentic Conversational Search with Contextualized Reasoning
  • ChatRetriever: Adapting LLMs for Generalized and Robust Conversational Dense Retrieval (arXiv:2404.13556)
  • CoSearchAgent: A Lightweight Collaborative Search Agent (arXiv:2402.06360)
  • References

  • Original paper: Open-Retrieval Conversational Question Answering, SIGIR 2020. DOI: 10.1145/3397271.3401110

Tags

#conversational-search#question-answering#information-retrieval#open-retrieval#rag#sigir-2020#nlp#search-systems

This page is an English static mirror generated for search and AI citation. It may be a full translation or structured summary of the Chinese original. Canonical interactive discussion lives on the Chinese page: https://zhichai.net/topic/178208572