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 (legacy)
Instructions to use hkunlp/instructor-large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use hkunlp/instructor-large with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("hkunlp/instructor-large") sentences = [ "That is a happy person", "That is a happy dog", "That is a very happy person", "Today is a sunny day" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Transformers
How to use hkunlp/instructor-large with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("hkunlp/instructor-large") model = AutoModel.from_pretrained("hkunlp/instructor-large") - Notebooks
- Google Colab
- Kaggle
Commit ·
20071f8
1
Parent(s): 089aa85
Update README.md
Browse files
README.md
CHANGED
|
@@ -36,7 +36,7 @@ print(embeddings)
|
|
| 36 |
|
| 37 |
## Use cases
|
| 38 |
<hr />
|
| 39 |
-
|
| 40 |
## Calculate embeddings for your customized texts
|
| 41 |
If you want to calculate customized embeddings for specific sentences, you may follow the unified template to write instructions:
|
| 42 |
|
|
|
|
| 36 |
|
| 37 |
## Use cases
|
| 38 |
<hr />
|
| 39 |
+
|
| 40 |
## Calculate embeddings for your customized texts
|
| 41 |
If you want to calculate customized embeddings for specific sentences, you may follow the unified template to write instructions:
|
| 42 |
|