Views
No views yet
| File | Quantization | Size |
|---|---|---|
| multilingual-e5-base-q4_k.gguf | Q4_K | 247 MB |
| multilingual-e5-base-q8_0.gguf | Q8_0 | 287 MB |
| multilingual-e5-base.gguf | F32 | 1066 MB |
1# Download
2huggingface-cli download cstr/multilingual-e5-base-GGUF multilingual-e5-base-q4_k.gguf --local-dir .
3
4# Run with CrispEmbed
5./crispembed -m multilingual-e5-base-q4_k.gguf "Hello world"
6
7# Or with auto-download
8./crispembed -m multilingual-e5-base "Hello world"| Property | Value |
|---|---|
| Architecture | XLM-R |
| Parameters | 278M |
| Embedding Dimension | 768 |
| Layers | 12 |
| Pooling | mean |
| Tokenizer | SentencePiece |
| Base Model | intfloat/multilingual-e5-base |
1# Build CrispEmbed
2git clone https://github.com/CrispStrobe/CrispEmbed
3cd CrispEmbed
4cmake -S . -B build && cmake --build build -j
5
6# Encode
7./build/crispembed -m multilingual-e5-base-q4_k.gguf "query text"
8
9# Server mode
10./build/crispembed-server -m multilingual-e5-base-q4_k.gguf --port 8080
11curl -X POST http://localhost:8080/v1/embeddings \
12 -d '{"input": ["Hello world"], "model": "multilingual-e5-base"}'convert-bert-embed-to-gguf.pyintfloat.mit. This repository redistributes under the same terms; it grants no rights the upstream licence does not.