1ollama pull batiai/qwen3-vl-embed-8b:q8
2
3curl http://localhost:11434/api/embeddings -d '{
4 "model": "batiai/qwen3-vl-embed-8b:q8",
5 "prompt": "What is the capital of France?"
6}'
Returns a 3584-dim float vector (8B model uses wider embedding than 2B's 2048).
Embedding models are sensitive to low-bit quantization (vector quality drops). Q6_K minimum.
Direct embedding-quality evaluation (e.g. MTEB retrieval) is more involved than pairwise reranker testing and takes longer to run locally — it will be added as measured. In the meantime, our sibling
Qwen3-Reranker-8B card shows
Q6_K ↔ Q8_0 Pearson correlation r = 0.9986 on 40 hard-negative triples. Same architecture family, same quantization approach — we expect this embedding model to behave similarly (quantization drift under noise floor).
Mirrors upstream Qwen Apache 2.0. Commercial use permitted.