Instructions to use WhereIsAI/pubmed-angle-base-en with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use WhereIsAI/pubmed-angle-base-en with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("WhereIsAI/pubmed-angle-base-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
|
@@ -16,7 +16,7 @@ library_name: sentence-transformers
|
|
| 16 |
|
| 17 |
# WhereIsAI/pubmed-angle-base-en
|
| 18 |
|
| 19 |
-
This model is
|
| 20 |
|
| 21 |
It was fine-tuned with [AnglE Loss](https://arxiv.org/abs/2309.12871) using the official [angle-emb](https://github.com/SeanLee97/AnglE).
|
| 22 |
|
|
|
|
| 16 |
|
| 17 |
# WhereIsAI/pubmed-angle-base-en
|
| 18 |
|
| 19 |
+
This model is a sample model for the Chinese blog post [【coming soon】](#) and [angle tutorial](https://angle.readthedocs.io/en/latest/notes/tutorial.html#tutorial).
|
| 20 |
|
| 21 |
It was fine-tuned with [AnglE Loss](https://arxiv.org/abs/2309.12871) using the official [angle-emb](https://github.com/SeanLee97/AnglE).
|
| 22 |
|