f2llm-v2-330m GGUF

GGUF format of codefuse-ai/F2LLM-v2-330M for use with CrispEmbed.

F2LLM Embedding v2 330M. Qwen3-based, pruned from the 0.6B base; second-best of the family on MTEB(deu, v1) behind the 0.6B.

Files

File Quantization Size
f2llm-v2-330m-q8_0.gguf Q8_0 344 MB
f2llm-v2-330m.gguf F32 903 MB

Parity vs HuggingFace reference

Cosine similarity vs the upstream sentence-transformers reference on a fixed test set (text):

Quant Text
f16 1.0000
q8_0 0.9989

Quick Start

# Download
huggingface-cli download cstr/f2llm-v2-330m-GGUF f2llm-v2-330m-q8_0.gguf --local-dir .

# Run with CrispEmbed
./crispembed -m f2llm-v2-330m-q8_0.gguf "Hello world"

# Or with auto-download
./crispembed -m f2llm-v2-330m "Hello world"

Model Details

Property Value
Architecture Qwen3
Parameters 330M
Embedding Dimension 896
Layers 16
Pooling last-token
Tokenizer GPT-2 BPE
Base Model codefuse-ai/F2LLM-v2-330M

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 f2llm-v2-330m-q8_0.gguf "query text"

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

Credits

Downloads last month
-
GGUF
Model size
0.3B params
Architecture
decoder_embed
Hardware compatibility
Log In to add your hardware

4-bit

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for cstr/f2llm-v2-330m-GGUF