Skip to content

Commit

Permalink
Fix contexts attribute name in examples documentation (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasLeRay authored May 15, 2024
1 parent d6966c9 commit 35f88ed
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ pipeline = SingleModulePipeline(
dataset=dataset,
eval=[
PrecisionRecallF1().use(
retrieved_context=dataset.retrieved_context,
ground_truth_context=dataset.ground_truth_context,
retrieved_context=dataset.retrieved_contexts,
ground_truth_context=dataset.ground_truth_contexts,
),
RankedRetrievalMetrics().use(
retrieved_context=dataset.retrieved_context,
ground_truth_context=dataset.ground_truth_context,
retrieved_context=dataset.retrieved_contexts,
ground_truth_context=dataset.ground_truth_contexts,
),
],
)
Expand Down

0 comments on commit 35f88ed

Please sign in to comment.