Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update autoevals manifest #112

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions js/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,36 +110,43 @@ export const Evaluators: {
method: ContextEntityRecall,
description:
"Estimates context recall by estimating TP and FN using annotated answer and retrieved context.",
requiresExtraParams: true,
},
{
method: ContextRelevancy,
description:
"Extracts relevant sentences from the provided context that are absolutely required to answer the given question.",
requiresExtraParams: true,
},
{
method: ContextRecall,
description:
"Analyzes each sentence in the answer and classifies if the sentence can be attributed to the given context or not.",
requiresExtraParams: true,
},
{
method: ContextPrecision,
description:
"Verifies if the context was useful in arriving at the given answer.",
requiresExtraParams: true,
},
{
method: AnswerRelevancy,
description:
"Scores the relevancy of the generated answer to the given question.",
requiresExtraParams: true,
},
{
method: AnswerSimilarity,
description:
"Scores the semantic similarity between the generated answer and ground truth.",
requiresExtraParams: true,
},
{
method: AnswerCorrectness,
description:
"Measures answer correctness compared to ground truth using a weighted average of factuality and semantic similarity.",
requiresExtraParams: true,
},
],
},
Expand Down
Loading