From eaedd04c5aae4722f8692e64489ebb90db3b0850 Mon Sep 17 00:00:00 2001 From: Joel Niklaus Date: Fri, 10 Jan 2025 20:30:55 -0800 Subject: [PATCH] Fixed typo. --- src/lighteval/logging/evaluation_tracker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lighteval/logging/evaluation_tracker.py b/src/lighteval/logging/evaluation_tracker.py index 37c6ab48..0fe638c3 100644 --- a/src/lighteval/logging/evaluation_tracker.py +++ b/src/lighteval/logging/evaluation_tracker.py @@ -242,7 +242,7 @@ def load_details_datasets(self, date_id: str, task_names: list[str]) -> dict[str for task_name in task_names: if not any(task_name.startswith(task_name) for task_name in details_datasets.keys()): raise ValueError( - f"Task {task_name} not found in details datasets. Check the tasks to be evaluated or the date_id used to load the details ({self.pipeline_parameters.load_responses_from_details_date_id})." + f"Task {task_name} not found in details datasets. Check the tasks to be evaluated or the date_id used to load the details ({date_id})." ) return details_datasets