Aamir
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -23,7 +23,7 @@ This is the base model in our family of powerful reranker models. You can learn
|
|
23 |
We have three models:
|
24 |
|
25 |
- [mxbai-rerank-xsmall-v1](https://huggingface.co/mixedbread-ai/mxbai-rerank-xsmall-v1)
|
26 |
-
- [mxbai-rerank-base-v1](https://huggingface.co/mixedbread-ai/mxbai-rerank-base-v1)
|
27 |
- [mxbai-rerank-large-v1](https://huggingface.co/mixedbread-ai/mxbai-rerank-large-v1)
|
28 |
|
29 |
## Quickstart
|
@@ -35,7 +35,7 @@ Currently, the best way to use our models is with the most recent version of sen
|
|
35 |
Let's say you have a query, and you want to rerank a set of documents. You can do that with only one line of code:
|
36 |
|
37 |
```python
|
38 |
-
from
|
39 |
|
40 |
# Load the model, here we use our base sized model
|
41 |
model = CrossEncoder("mixedbread-ai/mxbai-rerank-base-v1")
|
|
|
23 |
We have three models:
|
24 |
|
25 |
- [mxbai-rerank-xsmall-v1](https://huggingface.co/mixedbread-ai/mxbai-rerank-xsmall-v1)
|
26 |
+
- [mxbai-rerank-base-v1](https://huggingface.co/mixedbread-ai/mxbai-rerank-base-v1) (🍞)
|
27 |
- [mxbai-rerank-large-v1](https://huggingface.co/mixedbread-ai/mxbai-rerank-large-v1)
|
28 |
|
29 |
## Quickstart
|
|
|
35 |
Let's say you have a query, and you want to rerank a set of documents. You can do that with only one line of code:
|
36 |
|
37 |
```python
|
38 |
+
from sentence_transformers import CrossEncoder
|
39 |
|
40 |
# Load the model, here we use our base sized model
|
41 |
model = CrossEncoder("mixedbread-ai/mxbai-rerank-base-v1")
|