Sentence Similarity
sentence-transformers
PyTorch
Transformers
English
t5
text-embedding
embeddings
information-retrieval
beir
text-classification
language-model
text-clustering
text-semantic-similarity
text-evaluation
prompt-retrieval
text-reranking
feature-extraction
English
Sentence Similarity
natural_questions
ms_marco
fever
hotpot_qa
mteb
Eval Results
Inference Endpoints
Update README.md
Browse files
README.md
CHANGED
@@ -23,7 +23,7 @@ Then you can use the model like this:
|
|
23 |
from sentence_transformers import SentenceTransformer
|
24 |
sentence = "3D ActionSLAM: wearable person tracking in multi-floor environments"
|
25 |
instruction = "Represent the Science title; Input:"
|
26 |
-
model = SentenceTransformer('instructor-xl')
|
27 |
embeddings = model.encode([[instruction,sentence,0]])
|
28 |
print(embeddings)
|
29 |
```
|
|
|
23 |
from sentence_transformers import SentenceTransformer
|
24 |
sentence = "3D ActionSLAM: wearable person tracking in multi-floor environments"
|
25 |
instruction = "Represent the Science title; Input:"
|
26 |
+
model = SentenceTransformer('hku-nlp/instructor-xl')
|
27 |
embeddings = model.encode([[instruction,sentence,0]])
|
28 |
print(embeddings)
|
29 |
```
|