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

fix: answer_correctness embedding #513

Merged
merged 1 commit into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions src/ragas/metrics/_answer_correctness.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ def __post_init__(self: t.Self):
if not all([w >= 0 for w in self.weights]):
raise ValueError("Weights must be non-negative")

def init_model(self):
super().init_model()
if self.answer_similarity is None and self.weights[1] != 0:
self.answer_similarity = AnswerSimilarity(
llm=self.llm, batch_size=self.batch_size, embeddings=self.embeddings
Expand Down
2 changes: 1 addition & 1 deletion tests/benchmarks/benchmark_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# data
ds = load_dataset("explodinggradients/amnesty_qa", "english")
assert isinstance(ds, DatasetDict)
eval_dataset = ds["train"]
eval_dataset = ds["eval"]

# metrics
metrics = [
Expand Down
Loading