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 Geolumina/instructor-xl with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use Geolumina/instructor-xl with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("Geolumina/instructor-xl") 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 Geolumina/instructor-xl with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("Geolumina/instructor-xl") model = AutoModel.from_pretrained("Geolumina/instructor-xl", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -2523,7 +2523,7 @@ model-index:
|
|
| 2523 |
- type: max_f1
|
| 2524 |
value: 79.35138351681047
|
| 2525 |
---
|
| 2526 |
-
clone of hkunlp/instructor with added requirements.txt for inference endpoint
|
| 2527 |
|
| 2528 |
|
| 2529 |
|
|
|
|
| 2523 |
- type: max_f1
|
| 2524 |
value: 79.35138351681047
|
| 2525 |
---
|
| 2526 |
+
clone of hkunlp/instructor with added requirements.txt for inference endpoint and handler that allows use of langchain
|
| 2527 |
|
| 2528 |
|
| 2529 |
|