AccuracyScorer
Calculates accuracy based on substring or token-level matching between prediction and ground truth. More lenient than ExactMatchScorer, allowing for partial matches.
Overview
Calculates accuracy based on substring or token-level matching between prediction and ground truth. More lenient than ExactMatchScorer, allowing for partial matches.
Use Cases
- Accuracy benchmarking and validation
How It Works
This scorer uses deterministic rule-based evaluation to validate outputs against specific criteria. It applies predefined rules and patterns to assess the response, providing consistent and reproducible results without requiring LLM inference.
Input Schema
| Parameter | Type | Required | Description |
|---|---|---|---|
| prediction | str | Yes | Generated output |
| ground_truth | str | Yes | Expected output |
Output Schema
| Field | Type | Description |
|---|---|---|
| score | float | Partial match score (0-10) |
| passed | bool | True if above threshold |
| reasoning | str | Match analysis |
| metadata | dict | Token overlap details |
Score Interpretation
Default threshold: 7/10
Related Scorers
MultiPatternAccuracyScorer
Evaluates prediction accuracy against multiple acceptable patterns or answers. Ideal for tasks where...
AccuracyExactMatchScorer
Evaluates whether the prediction exactly matches the ground truth. Strictest form of accuracy measur...
AccuracyF1Scorer
Computes token-level F1 score between prediction and ground truth. Balances precision and recall, us...
NLP MetricsBLEUScorer
Computes BLEU (Bilingual Evaluation Understudy) score between prediction and ground truth. Measures ...
Frequently Asked Questions
When should I use this scorer?
Use AccuracyScorer when you need to evaluate accuracy and rule-based aspects of your AI outputs. It's particularly useful for accuracy benchmarking and validation.
Why does this scorer need expected output?
This scorer compares the generated output against a known expected result to calculate accuracy metrics.
Can I customize the threshold?
Yes, the default threshold of 7 can be customized when configuring the scorer.
Quick Info
Ready to try AccuracyScorer?
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
