dam2452/Qwen3-VL-Embedding-8B-GGUF
4313
Qwen3-VL-Embedding-8B GGUF
GGUF quantizations of Qwen/Qwen3-VL-Embedding-8B for efficient CPU inference with llama.cpp.
Model Description
Qwen3-VL-Embedding-8B is a multimodal embedding model for information retrieval and cross-modal understanding. It supports text, images, screenshots, videos, and mixed multimodal inputs.
Original model specs:
- Parameters: 8B
- Context Length: 32K tokens
- Embedding Dimension: 64-4096 (configurable)
- Languages: 30+
- Input Modalities: Text, Images, Videos
Available Quantizations
Recommendation: Start with Q80 for production use. Use Q4KM or Q5K_M for resource-constrained environments.
Usage with llama.cpp
Installation
git clone https://github.com/ggerganov/llama.cpp
cd llama.cpp
make -jDownload Model
huggingface-cli download dam2452/Qwen3-VL-Embedding-8B-GGUF \
Qwen3-VL-Embedding-8B-Q8_0.gguf \
--local-dir ./modelsRun Embedding Server
./llama-server \
-m models/Qwen3-VL-Embedding-8B-Q8_0.gguf \
--embedding \
--port 8080 \
--host 0.0.0.0Generate Embeddings (API)
curl http://localhost:8080/embedding \
-H "Content-Type: application/json" \
-d '{
"content": "Your text or image data here"
}'Generate Embeddings (Python)
import requests
response = requests.post(
"http://localhost:8080/embedding",
json={"content": "A woman playing with her dog on a beach"}
)
embedding = response.json()["embedding"]
print(f"Embedding dimension: {len(embedding)}")Performance
Original model performance on benchmarks:
- MMEB-V2: 77.9 overall score
- MMTEB: 67.88 mean task score
- Retrieval: 81.08
Note: Quantized models may show slightly reduced performance, with Q8_0 typically having less than 1% degradation.
License
Apache 2.0 (inherited from original model)
Citation
@article{qwen3vlembedding,
title={Qwen3-VL-Embedding and Qwen3-VL-Reranker: A Unified Framework for State-of-the-Art Multimodal Retrieval and Ranking},
author={Li, Mingxin and Zhang, Yanzhao and Long, Dingkun and Chen Keqin and Song, Sibo and Bai, Shuai and Yang, Zhibo and Xie, Pengjun and Yang, An and Liu, Dayiheng and Zhou, Jingren and Lin, Junyang},
journal={arXiv},
year={2026}
}