-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!-- If you are submitting a dataset or a model for the model registry please use the corresponding checklists below otherwise feel free to remove them. --> | ||
|
||
<!-- add additional description, question etc. related to the new dataset --> | ||
|
||
|
||
## Checklist | ||
<!-- Please do not delete this --> | ||
|
||
- [ ] Run tests locally to make sure nothing is broken using `make test`. | ||
- [ ] Run the results files checker `make pre-push`. | ||
|
||
### Adding a model checklist | ||
<!-- | ||
When adding a model to the model registry | ||
see also https://github.com/embeddings-benchmark/mteb/blob/main/docs/reproducible_workflow.md | ||
--> | ||
|
||
- [ ] I have added model implementation to `mteb/models/` [directory](https://github.com/embeddings-benchmark/mteb/tree/main/mteb/models). Instruction to add a model can be found [here](https://github.com/embeddings-benchmark/mteb/blob/main/docs/reproducible_workflow.md) | ||
- [ ] I have ensured that my model can be loaded using | ||
- [ ] `mteb.get_model(model_name, revision)` and | ||
- [ ] `mteb.get_model_meta(model_name, revision)` | ||
- [ ] I have tested the implementation works on a representative set of tasks. |