Feature Extraction
sentence-transformers
Safetensors
Chinese
bert
mteb
Eval Results (legacy)
text-embeddings-inference
Instructions to use OpenSearch-AI/Ops-MoA-Yuan-embedding-1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use OpenSearch-AI/Ops-MoA-Yuan-embedding-1.0 with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("OpenSearch-AI/Ops-MoA-Yuan-embedding-1.0") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Notebooks
- Google Colab
- Kaggle
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("OpenSearch-AI/Ops-MoA-Yuan-embedding-1.0")
model.encode(['text'])
- Downloads last month
- 19
Model tree for OpenSearch-AI/Ops-MoA-Yuan-embedding-1.0
Unable to build the model tree, the base model loops to the model itself. Learn more.
Spaces using OpenSearch-AI/Ops-MoA-Yuan-embedding-1.0 8
π₯
mteb/leaderboard
π₯
maxpar1/leaderboard
π₯
kiedistv/leaderboard
π₯
malyvena/leaderboard
π₯
HuggingLLM/leaderboard
Evaluation results
- ndcg_at_10 on MTEB CmedqaRetrievalself-reported51.461
- ndcg_at_10 on MTEB CovidRetrievalself-reported93.200
- ndcg_at_10 on MTEB DuRetrievalself-reported89.840
- ndcg_at_10 on MTEB EcomRetrievalself-reported71.084
- ndcg_at_10 on MTEB MMarcoRetrievalself-reported82.430
- ndcg_at_10 on MTEB MedicalRetrievalself-reported74.848
- ndcg_at_10 on MTEB T2Retrievalself-reported85.784
- ndcg_at_10 on MTEB VideoRetrievalself-reported79.513
from sentence_transformers import SentenceTransformer model = SentenceTransformer("OpenSearch-AI/Ops-MoA-Yuan-embedding-1.0") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3]