Samoed commited on
Commit
9bc0e95
·
verified ·
1 Parent(s): 5436980

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
  license: mit
3
- pipeline_tag: sentence-similarity
4
  tags:
5
  - mteb
6
  ---
@@ -16,8 +16,8 @@ Note that this repository does not contain the model implementation, but you can
16
  ```python
17
  import mteb
18
 
19
- task = mteb.get_benchmark("mteb(eng, v2)") # the v2 English benchmark
20
- model = mteb.get_model("mteb/bm25s")
21
 
22
  results = mteb.evaluate(model, task)
23
  ```
 
1
  ---
2
  license: mit
3
+ pipeline_tag: text-ranking
4
  tags:
5
  - mteb
6
  ---
 
16
  ```python
17
  import mteb
18
 
19
+ task = mteb.get_benchmark("RTEB(beta)") # the v2 English benchmark
20
+ model = mteb.get_model("mteb/baseline-bm25s")
21
 
22
  results = mteb.evaluate(model, task)
23
  ```