Sentence Similarity
ONNX
sentence-transformers
light-embed
bert
feature-extraction
text-embeddings-inference
Instructions to use LightEmbed/baai-llm-embedder-onnx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use LightEmbed/baai-llm-embedder-onnx with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("LightEmbed/baai-llm-embedder-onnx") sentences = [ "That is a happy person", "That is a happy dog", "That is a very happy person", "Today is a sunny day" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Commit History
Add new SentenceTransformer model. a3c665b verified
remove README.md cc575c2
nguyenthaibinh commited on
remove redundant files 1c251f5
nguyenthaibinh commited on
Add new SentenceTransformer model. 2fd3907 verified
new model with pooler and normalizer fef0213
nguyenthaibinh commited on
add base model name 14f5784
nguyenthaibinh commited on
add model_info.json 4b3784e
nguyenthaibinh commited on
upload onnx model 402e4f9
nguyenthaibinh commited on
initial commit 951ae0d
nguyenthaibinh commited on