baseline-bm25s / README.md
Samoed's picture
Update README.md
9bc0e95 verified
metadata
license: mit
pipeline_tag: text-ranking
tags:
  - mteb

bm25s

Repo for storing evaluation results of the bm25s implementation in MTEB. BM25 acts as a competitive hard-to-beat baseline.

Note that this repository does not contain the model implementation, but you can fetch the implementation in MTEB using:

import mteb

task = mteb.get_benchmark("RTEB(beta)")  # the v2 English benchmark
model = mteb.get_model("mteb/baseline-bm25s")

results = mteb.evaluate(model, task)