Sentence Similarity
sentence-transformers
Safetensors
distilbert
feature-extraction
dataset_size:100K<n<1M
loss:CoSENTLoss
Eval Results (legacy)
text-embeddings-inference
Instructions to use gkudirka/crash_encoder1-sts with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use gkudirka/crash_encoder1-sts with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("gkudirka/crash_encoder1-sts") sentences = [ "T L 2 DUMMY CHEST LAT WIDEBAND 90 Deg Front 2020 CX482 G-S", "T L F DUMMY CHEST LAT WIDEBAND 90 Deg Front 2020.5 U625 G-S", "T L F DUMMY HEAD CG LAT WIDEBAND Static Airbag OOP Test 2025 CX430 G-S", "T R F DUMMY PELVIS LAT WIDEBAND 90 Deg Frontal Impact Simulation 2026 P800 G-S" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Welcome to the community
The community tab is the place to discuss and collaborate with the HF community!