YAML Metadata
Warning:
empty or missing yaml metadata in repo card
(https://huggingface.co/docs/hub/model-cards#model-card-metadata)
Run Model this way:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("ClovenDoug/tiny_64_all-MiniLM-L6-v2")
sentence_one = "I like cats"
embedding = model.encode(sentence_one)
print(embedding)
tiny_64_all-MiniLM-L6-v2
This is a sentence-transformers model:
It maps sentences & paragraphs to a 64 dimensional dense vector space and can be used for tasks like clustering or semantic search.
This gives it faster similarity comparison time although inference time will remain about the same.
This model was made using knowledge distillation techniques on the original 384 dimensional all-MiniLM-L6-v2 model.
The script for distilling this model into various sizes can be found here:
https://github.com/dorenwick/sentence_encoder_distillation
Usage (Sentence-Transformers)
Using this model becomes easy when you have sentence-transformers installed:
- Downloads last month
- 3
Inference Providers
NEW
This model is not currently available via any of the supported third-party Inference Providers, and
the model is not deployed on the HF Inference API.