bge-m3-poi-retrieval-ko
44
β
by
ByoungYoon
Embedding Model
OTHER
New
44 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Code Examples
Usagebash
pip install -U sentence-transformersUsagepython
from sentence_transformers import SentenceTransformer
# Download from the π€ Hub
model = SentenceTransformer("sentence_transformers_model_id")
# Run inference
sentences = [
'μ°½μμ€μλ',
'κ²½λ¨ μ°½μμ μ€μꡬ μ€μλ μ€μλ | μ°½μμ μ€μλ | μ€μꡬ μ€μλ | μ€μλ μ€μλ',
'κ²½λ¨ μμ°μ νμ°λ μΌλ£‘νμ§ | μμ°μ μΌλ£‘νμ§ | νμ°λ μΌλ£‘νμ§',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 1024]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[1.0000, 0.8642, 0.0517],
# [0.8642, 1.0000, 0.0176],
# [0.0517, 0.0176, 1.0000]])Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.