Views
No views yet
| File | Quantization | Size |
|---|---|---|
| jina-v5-small-classification.gguf | F32 | 2279 MB |
| jina-v5-small-clustering.gguf | F32 | 2279 MB |
| jina-v5-small-q4_k.gguf | Q4_K | 400 MB |
| jina-v5-small-q5_k.gguf | Q5_K | 452 MB |
| jina-v5-small-q8_0.gguf | Q8_0 | 610 MB |
| jina-v5-small-text-matching.gguf | F32 | 2279 MB |
| jina-v5-small.gguf | F32 | 2279 MB |
1# Download
2huggingface-cli download cstr/jina-v5-small-GGUF jina-v5-small-classification.gguf --local-dir .
3
4# Run with CrispEmbed
5./crispembed -m jina-v5-small-classification.gguf "Hello world"
6
7# Or with auto-download
8./crispembed -m jina-v5-small "Hello world"| Property | Value |
|---|---|
| Architecture | Qwen3 |
| Parameters | 600M |
| Embedding Dimension | 1024 |
| Layers | 28 |
| Pooling | last-token |
| Tokenizer | GPT-2 BPE |
| Base Model | jinaai/jina-embeddings-v5-text-small |
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 jina-v5-small-classification.gguf "query text"
8
9# Server mode
10./build/crispembed-server -m jina-v5-small-classification.gguf --port 8080
11curl -X POST http://localhost:8080/v1/embeddings \
12 -d '{"input": ["Hello world"], "model": "jina-v5-small"}'convert-decoder-embed-to-gguf.pyjinaai.cc-by-nc-4.0. This repository redistributes under the same terms; it grants no rights the upstream licence does not.