Sentence Similarity
sentence-transformers
Safetensors
roberta
chemistry
molecular-similarity
cheminformatics
ssl
smiles
feature-extraction
text-embeddings-inference
Instructions to use gbyuvd/miniChembed-prototype with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use gbyuvd/miniChembed-prototype with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("gbyuvd/miniChembed-prototype") 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] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -174,7 +174,7 @@ This model was trained using a custom script based on Sentence Transformers v5.1
|
|
| 174 |
- Datasets: 4.0.0
|
| 175 |
- Tokenizers: 0.22.0
|
| 176 |
|
| 177 |
-
Training code, config, and evaluation are available on this repo under `
|
| 178 |
|
| 179 |
---
|
| 180 |
|
|
|
|
| 174 |
- Datasets: 4.0.0
|
| 175 |
- Tokenizers: 0.22.0
|
| 176 |
|
| 177 |
+
Training code, config, and evaluation are available on this repo under `./train/trainbarlow.py` and `./train/config.yaml`
|
| 178 |
|
| 179 |
---
|
| 180 |
|