Sentence Similarity
sentence-transformers
Safetensors
bert
feature-extraction
Generated from Trainer
dataset_size:4370
loss:CosineSimilarityLoss
text-embeddings-inference
Instructions to use VaggP/fine-tuned-bge-large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use VaggP/fine-tuned-bge-large with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("VaggP/fine-tuned-bge-large") sentences = [ " The misconception lies in incorrectly aligning decimal points during addition, leading to an improper sum.", "Converts a fraction to a percentage by placing a decimal point between the numerator and denominator", "When two digits sum to 10 or more during an addition problem, does not add one to the preceding digit", "Confuses square rooting and halving the number" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
| { | |
| "__version__": { | |
| "sentence_transformers": "3.2.0", | |
| "transformers": "4.45.1", | |
| "pytorch": "2.4.0" | |
| }, | |
| "prompts": {}, | |
| "default_prompt_name": null, | |
| "similarity_fn_name": null | |
| } |