File size: 598 Bytes
5436980
 
9bc0e95
5436980
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9bc0e95
 
5436980
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
license: mit
pipeline_tag: text-ranking
tags:
- mteb
---

# bm25s


Repo for storing evaluation results of the [`bm25s`](https://embeddings-benchmark.github.io/mteb/overview/available_models/text/?h=bm25#baselinebm25s)
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:

```python
import mteb

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

results = mteb.evaluate(model, task)
```