tomaarsen HF staff commited on
Commit
12c73c9
1 Parent(s): a8dca5e

Simplify code, fix "base sized" to "tiny sized"

Browse files
Files changed (1) hide show
  1. README.md +2 -3
README.md CHANGED
@@ -74,9 +74,8 @@ Then, you can use the following code to interact with the model:
74
  ```python
75
  from sentence_transformers import CrossEncoder
76
 
77
- # Load the model, here we use our base sized model
78
- model = CrossEncoder("jinaai/jina-reranker-v1-tiny-en", num_labels=1, trust_remote_code=True)
79
-
80
 
81
  # Example query and documents
82
  query = "Organic skincare products for sensitive skin"
 
74
  ```python
75
  from sentence_transformers import CrossEncoder
76
 
77
+ # Load the model, here we use our tiny sized model
78
+ model = CrossEncoder("jinaai/jina-reranker-v1-tiny-en", trust_remote_code=True)
 
79
 
80
  # Example query and documents
81
  query = "Organic skincare products for sensitive skin"