Feature Extraction
GGUF
multilingual
llama.cpp
embedding
eurobert
llama-cpp
jina-embeddings-v5
🇪🇺 Region: EU
Instructions to use jinaai/jina-embeddings-v5-text-nano-clustering-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use jinaai/jina-embeddings-v5-text-nano-clustering-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf jinaai/jina-embeddings-v5-text-nano-clustering-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf jinaai/jina-embeddings-v5-text-nano-clustering-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf jinaai/jina-embeddings-v5-text-nano-clustering-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf jinaai/jina-embeddings-v5-text-nano-clustering-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf jinaai/jina-embeddings-v5-text-nano-clustering-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf jinaai/jina-embeddings-v5-text-nano-clustering-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf jinaai/jina-embeddings-v5-text-nano-clustering-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf jinaai/jina-embeddings-v5-text-nano-clustering-GGUF:Q4_K_M
Use Docker
docker model run hf.co/jinaai/jina-embeddings-v5-text-nano-clustering-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use jinaai/jina-embeddings-v5-text-nano-clustering-GGUF with Ollama:
ollama run hf.co/jinaai/jina-embeddings-v5-text-nano-clustering-GGUF:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use jinaai/jina-embeddings-v5-text-nano-clustering-GGUF with Docker Model Runner:
docker model run hf.co/jinaai/jina-embeddings-v5-text-nano-clustering-GGUF:Q4_K_M
- Lemonade
How to use jinaai/jina-embeddings-v5-text-nano-clustering-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull jinaai/jina-embeddings-v5-text-nano-clustering-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.jina-embeddings-v5-text-nano-clustering-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Commit ·
30bf3f9
1
Parent(s): 999ebb5
first batch of gguf files
Browse files- .gitattributes +1 -0
- README.md +52 -3
- v5-nano-clustering-F16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
*.gguf filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,3 +1,52 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pipeline_tag: feature-extraction
|
| 3 |
+
tags:
|
| 4 |
+
- gguf
|
| 5 |
+
- embedding
|
| 6 |
+
- eurobert
|
| 7 |
+
- llama-cpp
|
| 8 |
+
- jina-embeddings-v5
|
| 9 |
+
language:
|
| 10 |
+
- multilingual
|
| 11 |
+
base_model: jinaai/jina-embeddings-v5-text-nano
|
| 12 |
+
base_model_relation: quantized
|
| 13 |
+
inference: false
|
| 14 |
+
license: cc-by-nc-4.0
|
| 15 |
+
library_name: llama.cpp
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# jina-embeddings-v5-text-nano-clustering-GGUF
|
| 19 |
+
|
| 20 |
+
GGUF quantizations of [jina-embeddings-v5-text-nano-clustering](https://huggingface.co/jinaai/jina-embeddings-v5-text-nano) using llama.cpp. A 239M parameter multilingual embedding model quantized for efficient inference.
|
| 21 |
+
|
| 22 |
+
> [!IMPORTANT]
|
| 23 |
+
> We highly recommend to first read [this blog post for more technical details and customized llama.cpp build](https://jina.ai/news/optimizing-ggufs-for-decoder-only-embedding-models).
|
| 24 |
+
|
| 25 |
+
## Overview
|
| 26 |
+
|
| 27 |
+
`jina-embeddings-v5-text-nano-clustering` is a task-specific embedding model for **clustering**, part of the [jina-embeddings-v5-text](https://huggingface.co/jinaai/jina-embeddings-v5-text-nano) model family.
|
| 28 |
+
|
| 29 |
+
| Feature | Value |
|
| 30 |
+
| --- | --- |
|
| 31 |
+
| Parameters | 239M |
|
| 32 |
+
| Task | `clustering` |
|
| 33 |
+
| Embedding Dimension | 768 |
|
| 34 |
+
| Matryoshka Dimensions | 32, 64, 128, 256, 512, 768 |
|
| 35 |
+
| Pooling Strategy | Last-token pooling |
|
| 36 |
+
| Base Model | [jina-embeddings-v5-text-nano](https://huggingface.co/jinaai/jina-embeddings-v5-text-nano) |
|
| 37 |
+
|
| 38 |
+
## Usage with llama.cpp
|
| 39 |
+
|
| 40 |
+
```bash
|
| 41 |
+
# Build llama.cpp (upstream)
|
| 42 |
+
git clone https://github.com/ggml-org/llama.cpp
|
| 43 |
+
cd llama.cpp && cmake -B build && cmake --build build --config Release
|
| 44 |
+
|
| 45 |
+
# Run embedding
|
| 46 |
+
./build/bin/llama-embedding -m jina-embeddings-v5-text-nano-clustering-Q8_0.gguf \
|
| 47 |
+
--pooling last -p "Your text here"
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
## License
|
| 51 |
+
|
| 52 |
+
CC-BY-NC-4.0. For commercial use, please [contact us](https://jina.ai/contact-sales).
|
v5-nano-clustering-F16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49cab26e1e155550bdfcc875ca6e92ccdeaf888afb6eb28eff9f81976407732c
|
| 3 |
+
size 431395968
|