Views
No views yet
| File | Quantization | Size | cos vs HF |
|---|---|---|---|
| multilingual-e5-small.gguf | F32 | 455 MiB | 1.0000 (reference) |
| multilingual-e5-small-q8_0.gguf | Q8_0 | 126 MiB | 0.9999 |
| multilingual-e5-small-q4_k.gguf | Q4_K | 115 MiB | 0.990 |
| multilingual-e5-small-q4_k-imatrix.gguf | Q4_K + imatrix | 115 MiB | not measured |
| multilingual-e5-small-iq4_xs.gguf | IQ4_XS | 115 MiB | not measured |
multilingual-e5-small.imatrix
(131 KiB, the importance matrix used for the imatrix/IQ quants) and
multilingual-e5-small-imatrix-ab.txt
(the A/B notes from producing it).1./crispembed -m multilingual-e5-small "Hello world"
2./crispembed-server -m multilingual-e5-small --port 80801# Create model
2echo "FROM multilingual-e5-small-q8_0.gguf" > Modelfile
3ollama create multilingual-e5-small -f Modelfile
4
5# Embed
6curl http://localhost:11434/api/embed -d '{"model":"multilingual-e5-small","input":["Hello world"]}'1from crispembed import CrispEmbed
2model = CrispEmbed("multilingual-e5-small-q8_0.gguf")
3vectors = model.encode(["Hello world", "Goodbye world"])| Property | Value |
|---|---|
| Architecture | BERT |
| Parameters | 118M |
| Embedding Dimension | 384 |
| Layers | 12 |
| Pooling | mean |
| Tokenizer | SentencePiece |
| Language | multilingual |
| Q8_0 vs HuggingFace | 0.9999 |
| Q4_K vs HuggingFace | 0.990 |
POST /embed — nativePOST /v1/embeddings — OpenAI-compatiblePOST /api/embed — Ollama-compatiblePOST /api/embeddings — Ollama legacyintfloat.mit. This repository redistributes under the same terms; it grants no rights the upstream licence does not.