jina-v5-small-GGUF / README.md
cstr's picture
Add model card for jina-v5-small GGUF
bcab6e7 verified
|
raw
history blame
2.48 kB
metadata
license: cc-by-nc-4.0
language:
  - multilingual
tags:
  - embeddings
  - gguf
  - ggml
  - text-embeddings
  - qwen3
  - crispembed
pipeline_tag: feature-extraction
base_model: jinaai/jina-embeddings-v5-small

jina-v5-small GGUF

GGUF format of jinaai/jina-embeddings-v5-small for use with CrispEmbed.

Jina Embeddings v5 Small. Full-size decoder model, 1024-dimensional.

Files

File Quantization Size
jina-v5-small-q4_k.gguf Q4_K 399 MB
jina-v5-small-q8_0.gguf Q8_0 609 MB
jina-v5-small.gguf F32 2279 MB

Quick Start

# Download
huggingface-cli download cstr/jina-v5-small-GGUF jina-v5-small-q4_k.gguf --local-dir .

# Run with CrispEmbed
./crispembed -m jina-v5-small-q4_k.gguf "Hello world"

# Or with auto-download
./crispembed -m jina-v5-small "Hello world"

Model Details

Property Value
Architecture Qwen3
Parameters 600M
Embedding Dimension 1024
Layers 28
Pooling last-token
Tokenizer GPT-2 BPE
Base Model jinaai/jina-embeddings-v5-small

Verification

Verified bit-identical to HuggingFace sentence-transformers (cosine similarity >= 0.999 on test texts).

Usage with CrispEmbed

CrispEmbed is a lightweight C/C++ text embedding inference engine using ggml. No Python runtime, no ONNX. Supports BERT, XLM-R, Qwen3, and Gemma3 architectures.

# Build CrispEmbed
git clone https://github.com/CrispStrobe/CrispEmbed
cd CrispEmbed
cmake -S . -B build && cmake --build build -j

# Encode
./build/crispembed -m jina-v5-small-q4_k.gguf "query text"

# Server mode
./build/crispembed-server -m jina-v5-small-q4_k.gguf --port 8080
curl -X POST http://localhost:8080/v1/embeddings \
    -d '{"input": ["Hello world"], "model": "jina-v5-small"}'

Credits