Sentence Similarity
sentence-transformers
Safetensors
English
bert
feature-extraction
sts
embeddings
symmetric-augmentation
fine-tuned
text-embeddings-inference
Instructions to use blueprint-ai/SymSTS-MiniLM with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use blueprint-ai/SymSTS-MiniLM with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("blueprint-ai/SymSTS-MiniLM") 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
|
@@ -250,8 +250,7 @@ For every training pair:
|
|
| 250 |
Original: (Sentence_A, Sentence_B, score)
|
| 251 |
Augmented: (Sentence_B, Sentence_A, score)
|
| 252 |
|
| 253 |
-
Both are included.
|
| 254 |
-
|
| 255 |
### 5.3 Hyperparameters
|
| 256 |
|
| 257 |
<table>
|
|
|
|
| 250 |
Original: (Sentence_A, Sentence_B, score)
|
| 251 |
Augmented: (Sentence_B, Sentence_A, score)
|
| 252 |
|
| 253 |
+
Both are included, doubling the effective training set from ~8k to ~16k pairs. Note: because cosine similarity is symmetric by construction (sim(A,B) = sim(B,A) regardless of training), this augmentation's main effect is increasing the volume of training pairs rather than teaching the model a new bidirectional property. The performance gains reported in Section 4 are real and measured directly; the ablation isolating "more data" from "swap specifically" is planned as future work.
|
|
|
|
| 254 |
### 5.3 Hyperparameters
|
| 255 |
|
| 256 |
<table>
|