Sentence Similarity
sentence-transformers
Safetensors
bert
feature-extraction
dense
Generated from Trainer
dataset_size:11538689
loss:MultipleNegativesRankingLoss
Eval Results (legacy)
text-embeddings-inference
Instructions to use juanmcristobal/e5-small-v2-mitre with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use juanmcristobal/e5-small-v2-mitre with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("juanmcristobal/e5-small-v2-mitre") sentences = [ "deployment of ValleyRAT alongside additional payloads including keyloggers and cryptocurrency miners that establish persistent access", "Adversaries rifle through virtual machine files and host configs seeking content to exfiltrate.", "Credential interception happens via keyloggers that record keystrokes, often running unnoticed for extended periods.", "Cyber adversaries weaponize existing account credentials to silently infiltrate, persist, and elevate privileges across enterprise systems." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Welcome to the community
The community tab is the place to discuss and collaborate with the HF community!