Skip to content

Commit

Permalink
fix for no //
Browse files Browse the repository at this point in the history
  • Loading branch information
clefourrier committed Mar 5, 2024
1 parent 715909a commit f25a126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lighteval/tasks/lighteval_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ def load_datasets(tasks: list["LightevalTask"], dataset_loading_processes: int =

if dataset_loading_processes <= 1:
datasets = [
download_dataset_worker(task.dataset_path, task.dataset_config_name, task.trust_dataset)
download_dataset_worker((task.dataset_path, task.dataset_config_name, task.trust_dataset))
for task in tasks
]
else:
Expand Down

0 comments on commit f25a126

Please sign in to comment.