ContextualRecallScorerPP
Computes recall for retrieved chunks by estimating total relevant chunks available. Recall = (Number of relevant chunks retrieved) ÷ (Estimated total relevant chunks). Uses LLM-based estimation.
Overview
Computes recall for retrieved chunks by estimating total relevant chunks available. Recall = (Number of relevant chunks retrieved) ÷ (Estimated total relevant chunks). Uses LLM-based estimation.
Use Cases
- RAG-based question answering systems
How It Works
This scorer uses LLM-as-Judge technology to evaluate responses. It prompts a large language model with specific evaluation criteria and the content to assess, then analyzes the LLM's judgment to produce a score and detailed reasoning.
Input Schema
| Parameter | Type | Required | Description |
|---|---|---|---|
| input_text | str | Yes | Original query |
| context.chunks | list[str] | Yes | Retrieved chunks |
Output Schema
| Field | Type | Description |
|---|---|---|
| score | float | Recall score (0-10) |
| passed | bool | True if above threshold |
| reasoning | str | Recall analysis |
| metadata.relevant_chunks | int | Relevant retrieved |
| metadata.estimated_total_relevant | int | Estimated total |
Score Interpretation
Default threshold: 7/10
Related Scorers
ContextualPrecisionScorerPP
Computes precision for retrieved chunks using numerical relevance scoring. Precision = (Number of re...
Basic RAGRetrievalF1Scorer
F1 score combining precision and recall for contextual evaluation. Computes harmonic mean of precisi...
RAGContextualRecallScorer
Measures recall of retrieved context by estimating what fraction of relevant information was success...
RAGContextualPrecisionScorer
Measures precision of retrieved context by evaluating what fraction of retrieved chunks are actually...
Frequently Asked Questions
When should I use this scorer?
Use ContextualRecallScorerPP when you need to evaluate rag and llm-judge aspects of your AI outputs. It's particularly useful for rag-based question answering systems.
Why doesn't this scorer need expected output?
This scorer evaluates quality aspects that don't require comparison against a reference answer. It uses the system prompt and context as the implicit ground truth.
Can I customize the threshold?
Yes, the default threshold of 7 can be customized when configuring the scorer.
Quick Info
Ready to try ContextualRecallScorerPP?
Start evaluating your AI agents with Noveum.ai's comprehensive scorer library.
Explore More Scorers
Discover 106 calibrated LLM-as-Judge scorers for comprehensive AI evaluation
