After studying this material, you should be able to:
Open-domain QA means building systems that can answer any question across any topic, not just a narrow domain.
User asks: "What causes northern lights?"
↓
System searches knowledge sources
↓
System generates a comprehensive answer
The core challenge is defining what "good" looks like.
| Problem | Explanation |
|---|---|
| Multiple quality aspects | A good answer must be accurate, clear, well-organized, AND follow instructions |
| Scalar reward limitation | A single score (e.g., 7/10) cannot capture which aspect failed |
| Holistic judgment is vague | "This answer is better" doesn't tell the model why |
Key Insight: Telling a model "this answer is better" is like telling a student "your essay is bad" without explaining whether the problem is grammar, logic, or evidence.
Traditional alignment uses human preferences:
Answer A vs Answer B
↓ ↓
Human picks the "better" one
↓
Model learns from this signal
A rubric is a structured scoring guide that breaks evaluation into specific, measurable criteria.
Example Rubric for a QA Answer:
Question: "What are the health effects of sleep deprivation?"
Rubric Dimensions:
├── Factual Accuracy (Is it supported by evidence?)
├── Coherence (Does it flow logically?)
├── Organization (Is it well-structured?)
├── Instruction Following (Did it answer what was asked?)
└── Grounding (Is it tied to retrieved sources?)
Step 1: User submits a query
↓
Step 2: System retrieves relevant evidence documents
↓
Step 3: A rubric is GENERATED specific to this query + evidence
↓
Step 4: Model generates an answer
↓
Step 5: Answer is scored against each rubric dimension
↓
Step 6: Fine-grained scores guide model training
Critical Distinction: The rubric is query-specific — it's not a generic template but tailored to what this particular question requires.
The framework evaluates answers across three main axes:
Final Score = Average(Composition + Grounding + Instruction-Following)
Grounding means anchoring the rubric to retrieved evidence, not just general quality principles.
Without Grounding:
"The answer should be factually accurate."
With Grounding:
"The answer should reference the retrieved study from Johns Hopkins (2023) showing that 7-9 hours of sleep is optimal, and explain the cortisol mechanism described in Source 2."
| Approach | Result |
|---|---|
| Generic rubric | Model learns vague quality signals |
| Evidence-grounded rubric | Model learns to cite specific, verifiable facts |
| Improvement | Better factual support in answers |
Instruction-tuned baseline: [████████░░]
Flat rubric variants: [████████░░░] +0% vs rubric-based
Rubric-based framework: [██████████░] +6.5% over baseline
+4.0% over flat rubrics
| What was added | What improved |
|---|---|
| Conditioning on retrieved evidence | Factual support / Grounding |
| Decomposing into quality dimensions | Coherence, Organization, Instruction-following |
Key Takeaway: Each design choice had a specific, measurable benefit — this is the power of multi-dimensional evaluation.
The challenge extends beyond text:
Image of Eiffel Tower
+
Question: "When was this landmark built?"
↓
System must:
1. Understand the image (visual grounding)
2. Retrieve external knowledge about the Eiffel Tower
3. Generate an accurate answer
Key Insight: Many visual questions can be rewritten as text-only questions by resolving what the image refers to — enabling reuse of text-based QA systems.
MKQA Dataset:
- 10,000 question-answer pairs
- Aligned across 26 languages
- 260,000 total QA pairs
- Tests cross-lingual generalization
This tests whether QA systems work across languages, not just English — a critical real-world requirement.
PROBLEM: Single reward scores are too vague for complex QA training
↓
SOLUTION: Generate query-specific, evidence-grounded, multi-dimensional rubrics
↓
RESULT: +6.5% improvement across composition, grounding, instruction-following
↓
EXTENSION: Same challenges apply to visual QA and multilingual QA
| Principle | Why It Matters |
|---|---|
| Specificity | Query-specific rubrics beat generic ones |
| Grounding | Evidence-anchored evaluation reduces hallucination |
| Decomposition | Multiple dimensions reveal what needs improvement |
| Fine-grained supervision | Better training signals → better models |