Sentence Similarity
sentence-transformers
Safetensors
bert
feature-extraction
Generated from Trainer
loss:CoSENTLoss
text-embeddings-inference
Instructions to use kimhyeongjun/bge-small-v1.5-PatentClassification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use kimhyeongjun/bge-small-v1.5-PatentClassification with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("kimhyeongjun/bge-small-v1.5-PatentClassification") 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
|
@@ -27,7 +27,7 @@ This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [B
|
|
| 27 |
<!-- - **Language:** Unknown -->
|
| 28 |
<!-- - **License:** Unknown -->
|
| 29 |
|
| 30 |
-
**mteb/PatentClassification Validation**
|
| 31 |
|
| 32 |
before : {'accuracy': 0.2196464792813677}
|
| 33 |
|
|
|
|
| 27 |
<!-- - **Language:** Unknown -->
|
| 28 |
<!-- - **License:** Unknown -->
|
| 29 |
|
| 30 |
+
**mteb/PatentClassification Validation accuracy**
|
| 31 |
|
| 32 |
before : {'accuracy': 0.2196464792813677}
|
| 33 |
|