Sentence Similarity
sentence-transformers
Safetensors
English
bert
feature-extraction
Generated from Trainer
dataset_size:784827
loss:ContrastiveLoss
text-embeddings-inference
Instructions to use noystl/recomb-pred-e5-large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use noystl/recomb-pred-e5-large with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("noystl/recomb-pred-e5-large") sentences = [ "query: The study addresses the need for effective tools that allow both novice and expert users to analyze the diversity of news coverage about events. It highlights the importance of tailoring the interface to accommodate non-expert users while also considering the insights of journalism-savvy users, indicating a gap in existing systems that cater to varying levels of expertise in news analysis.We suggest combining 'a coordinated visualization interface tailored for visualization non-expert users' and ", "graph convolution", "Monte-Carlo sampling", "geometric features derived from perception sensor data" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Ctrl+K