-
Notifications
You must be signed in to change notification settings - Fork 292
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
May I ask if MTEB supports evaluating downloaded data? #1701
Comments
MTEB downloads datasets using |
Currently I don't believe there is a clear way. But we certainly welcome contributions! The Line 409 in 0753aba
For non-retrieval tasks, the Line 192 in 0753aba
So perhaps, you could try either:
class NewDataset(AmazonPolarityClassification):
metadata.dataset = {"path": YOUR_PATH} Let us know if any of these work :) |
We could implement the following: # one task
task = mteb.get_task("AmazonPolarityClassification", dataset_kwargs={...})
# more tasks at once
tasks = mteb.get_tasks(tasks = ["AmazonPolarityClassification"], dataset_kwargs={"AmazonPolarityClassification": {...}}) However, I am unsure if we want users to be able to overwrite kwargs. |
related to #1714 |
During the MTEB evaluation process, it usually downloads relevant task datasets, but I already have these datasets. Is there any way to specify the path
The text was updated successfully, but these errors were encountered: