Views
No views yet
[!IMPORTANT] We highly recommend to first read this blog post for more technical details and customized llama.cpp build.

jina-embeddings-v5-text-nano-clustering is a task-specific embedding model for clustering, part of the jina-embeddings-v5-text model family.| Feature | Value |
|---|---|
| Parameters | 239M |
| Task | clustering |
| Embedding Dimension | 768 |
| Matryoshka Dimensions | 32, 64, 128, 256, 512, 768 |
| Pooling Strategy | Last-token pooling |
| Base Model | jina-embeddings-v5-text-nano |



1PUT _inference/text_embedding/jina-v5
2{
3 "service": "elastic",
4 "service_settings": {
5 "model_id": "jina-embeddings-v5-text-nano"
6 }
7}1# Build llama.cpp (upstream)
2git clone https://github.com/ggml-org/llama.cpp
3cd llama.cpp && cmake -B build && cmake --build build --config Release
4
5# Run embedding
6./build/bin/llama-embedding -m jina-embeddings-v5-text-nano-clustering-Q8_0.gguf \
7 --pooling last -p "Your text here"