We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad1ce89 commit ff9a497Copy full SHA for ff9a497
src/lighteval/tasks/registry.py
@@ -148,10 +148,10 @@ def task_registry(self):
148
intersection = set(default_tasks_registry.keys()).intersection(set(custom_tasks_registry.keys()))
149
if len(intersection) > 0:
150
logger.warning(
151
- f"Following tasks ({intersection}) exists both in the default and custom tasks. Will use the default ones on conflict."
+ f"Following tasks ({intersection}) exists both in the default and custom tasks. Will use the custom ones on conflict."
152
)
153
154
- # Defaults tasks should overwrite custom tasks
+ # Custom tasks overwrite defaults tasks
155
return {**default_tasks_registry, **custom_tasks_registry}
156
157
@property
0 commit comments