Instructions to use WhereIsAI/pubmed-angle-large-en with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use WhereIsAI/pubmed-angle-large-en with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("WhereIsAI/pubmed-angle-large-en") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -39,7 +39,7 @@ Related model: [WhereIsAI/pubmed-angle-base-en](https://huggingface.co/WhereIsAI
|
|
| 39 |
|
| 40 |
**3. Citation**
|
| 41 |
|
| 42 |
-
Cite AnglE following 👉 https://huggingface.co/WhereIsAI/pubmed-angle-
|
| 43 |
|
| 44 |
|
| 45 |
## Usage
|
|
|
|
| 39 |
|
| 40 |
**3. Citation**
|
| 41 |
|
| 42 |
+
Cite AnglE following 👉 https://huggingface.co/WhereIsAI/pubmed-angle-large-en#citation
|
| 43 |
|
| 44 |
|
| 45 |
## Usage
|