Views
No views yet
| File | Quantization | Size |
|---|---|---|
| all-MiniLM-L6-v2-f32.gguf | F32 | 0 MB |
| all-MiniLM-L6-v2-q4_k.gguf | Q4_K | 0 MB |
| all-MiniLM-L6-v2-q8_0.gguf | Q8_0 | 0 MB |
| all-MiniLM-L6-v2.gguf | F32 | 0 MB |
1./crispembed -m all-MiniLM-L6-v2 "Hello world"
2./crispembed-server -m all-MiniLM-L6-v2 --port 80801# Create model
2echo "FROM all-MiniLM-L6-v2-q8_0.gguf" > Modelfile
3ollama create all-MiniLM-L6-v2 -f Modelfile
4
5# Embed
6curl http://localhost:11434/api/embed -d '{"model":"all-MiniLM-L6-v2","input":["Hello world"]}'1from crispembed import CrispEmbed
2model = CrispEmbed("all-MiniLM-L6-v2-q8_0.gguf")
3vectors = model.encode(["Hello world", "Goodbye world"])| Property | Value |
|---|---|
| Architecture | BERT |
| Parameters | 22M |
| Embedding Dimension | 384 |
| Layers | 6 |
| Pooling | mean |
| Tokenizer | WordPiece |
| Language | en |
| Q8_0 vs HuggingFace | 0.9998 |
| Q4_K vs HuggingFace | 0.970 |
POST /embed — nativePOST /v1/embeddings — OpenAI-compatiblePOST /api/embed — Ollama-compatiblePOST /api/embeddings — Ollama legacysentence-transformers.apache-2.0. This repository redistributes under the same terms; it grants no rights the upstream licence does not.