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-transformers
Usagepython
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

Fastest API

Production-ready inference API. Start free, scale to millions.

Try Free API

Replicate

One-click model deployment

Easiest Setup

Run models in the cloud with simple API. No DevOps required.

Deploy Now

Disclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.