Distilled Embedding Models
Collection
Embedding models distilled using Model2Vec framework.
•
4 items
•
Updated
This is a sentence-transformers model distilled from lightonai/modernbert-embed-large. It maps sentences & paragraphs to a 512-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.
SentenceTransformer(
(0): StaticEmbedding(
(embedding): EmbeddingBag(50368, 512, mode='mean')
)
)
First install the Sentence Transformers library:
pip install -U sentence-transformers
Then you can load this model and run inference.
from sentence_transformers import SentenceTransformer
# Download from the 🤗 Hub
model = SentenceTransformer("adrien-riaux/distill-modernbert-embed-large")
# Run inference
sentences = [
'The weather is lovely today.',
"It's so sunny outside!",
'He drove to the stadium.',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 512]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]
The model is distilled using Model2Vec framework. It is a new technique for creating extremely fast and small static embedding models from any Sentence Transformer.
Base model
answerdotai/ModernBERT-large