BGE M3-Embedding: Multi-Lingual, Multi-Functionality, Multi-Granularity Text Embeddings Through Self-Knowledge Distillation
Paper
•
2402.03216
•
Published
•
6
For more details please refer to the original github repo: https://github.com/FlagOpen/FlagEmbedding
This repo contains the original BAAI/bge-m3 distilled to a Static Embedding module using Model2Vec and exported with SentenceTransformer.
This is a sentence-transformers model trained. It maps sentences & paragraphs to a 758-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(250002, 758, 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("juampahc/bge-m3-m2v-758")
# 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, 758]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]
Base model
BAAI/bge-m3