Model Trained Using AutoTrain
- Problem type: Sentence Transformers
Validation Metrics
loss: 0.15625408291816711
runtime: 108.2094
samples_per_second: 13.141
steps_per_second: 0.822
: 3.0
Usage
Direct Usage (Sentence Transformers)
First install the Sentence Transformers library:
pip install -U sentence-transformers
Then you can load this model and run inference.
from sentence_transformers import SentenceTransformer
# Download from the Hugging Face Hub
model = SentenceTransformer("sentence_transformers_model_id")
# Run inference
sentences = [
'search_query: autotrain',
'search_query: auto train',
'search_query: i love autotrain',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
- Downloads last month
- 3
Model tree for ahmedHamdi/story-similarity-miniLM-L12-plots-pt-en-NE-masked
Base model
microsoft/MiniLM-L12-H384-uncased Quantized
sentence-transformers/all-MiniLM-L12-v2