aiq-scoring-e5-small

91
โ€”
by
Miya67
Embedding Model
OTHER
New
91 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("Miya67/aiq-scoring-e5-small")
# Run inference
sentences = [
    'query: ๅ•้กŒ: ใ€Œๆœ‰ๆฉŸ็‰ฉใ€ใ€Œ็„กๆฉŸ็‰ฉใ€ใชใฉใจใ„ใ†ใจใใฎๆœ‰ๆฉŸใƒป็„กๆฉŸใจใฏใ€ใฉใ‚“ใช็‰ฉ่ณชใฎๆœ‰็„กใ‚’ใ„ใฃใŸใ‚‚ใฎใงใ—ใ‚‡ใ†? ๅ›ž็ญ”: ใŸใ‚“ใ',
    'query: ๅ•้กŒ: ใ€Œๆœ‰ๆฉŸ็‰ฉใ€ใ€Œ็„กๆฉŸ็‰ฉใ€ใชใฉใจใ„ใ†ใจใใฎๆœ‰ๆฉŸใƒป็„กๆฉŸใจใฏใ€ใฉใ‚“ใช็‰ฉ่ณชใฎๆœ‰็„กใ‚’ใ„ใฃใŸใ‚‚ใฎใงใ—ใ‚‡ใ†? ๅ›ž็ญ”: ใŸใ‚“ใ',
    'query: ๅ•้กŒ: ใ€Œๆœ‰ๆฉŸ็‰ฉใ€ใ€Œ็„กๆฉŸ็‰ฉใ€ใชใฉใจใ„ใ†ใจใใฎๆœ‰ๆฉŸใƒป็„กๆฉŸใจใฏใ€ใฉใ‚“ใช็‰ฉ่ณชใฎๆœ‰็„กใ‚’ใ„ใฃใŸใ‚‚ใฎใงใ—ใ‚‡ใ†? ๅ›ž็ญ”: ใ—ใกใฃใ',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 384]

# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[1.0000, 1.0000, 0.4022],
#         [1.0000, 1.0000, 0.4022],
#         [0.4022, 0.4022, 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.