jina-v5-small-GGUF / README.md
cstr's picture
Update model card: license=cc-by-nc-4.0
9a834b4 verified
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-text-small

jina-v5-small GGUF

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

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

Files

Quick Start

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

# Run with CrispEmbed
./crispembed -m jina-v5-small-classification.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-text-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-classification.gguf "query text"

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

Credits