Sentence Similarity
sentence-transformers
Safetensors
modernbert
feature-extraction
Generated from Trainer
dataset_size:8963241
loss:EmbedDistillLoss
Eval Results (legacy)
text-embeddings-inference
Instructions to use sobamchan/monnem-large-v0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use sobamchan/monnem-large-v0 with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("sobamchan/monnem-large-v0") sentences = [ "A man in shorts and a woman in a black and white polka dot bikini sunbathing on the beach.", "A man is standing in a field with a green plant in it.", "A woman preparing some pork.", "uh-huh uh-huh well what other movies have you seen then lately" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Ctrl+K