We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
1.Evaluating Your Model Using the MTEB Package
To evaluate your model using the MTEB package, follow the steps below:
import mteb import logging from sentence_transformers import SentenceTransformer from mteb import MTEB logger = logging.getLogger(__name__) model_name = 'intfloat/e5-base-v2' model = SentenceTransformer(model_name) tasks = mteb.get_tasks( tasks=[ "AppsRetrieval", "CodeFeedbackMT", "CodeFeedbackST", "CodeTransOceanContest", "CodeTransOceanDL", "CosQA", "SyntheticText2SQL", "StackOverflowQA", "COIRCodeSearchNetRetrieval", "CodeSearchNetCCRetrieval", ] ) evaluation = MTEB(tasks=tasks) results = evaluation.run( model=model, overwrite_results=True ) print(results)
To upload your results to the leaderboard, please follow the instructions provided in the following guide: Adding a Model to the MTEB Leaderboard
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1.Evaluating Your Model Using the MTEB Package
To evaluate your model using the MTEB package, follow the steps below:
To upload your results to the leaderboard, please follow the instructions provided in the following guide: Adding a Model to the MTEB Leaderboard
The text was updated successfully, but these errors were encountered: