GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

Weidows/WeMM-Embedding-2B-GGUF overview

WeMM Embedding 2B — Quantization Quality STS B Evaluation set: STS B test 1,379 sentence pairs, human similarity 0 5 . Baseline: BF16 GGUF run in llama.cpp sam…

ggufembeddingmultimodalqwen3_5image-text-to-textvideo-text-to-textbase_model:tencent/WeMM-Embedding-2Bbase_model:quantized:tencent/WeMM-Embedding-2Blicense:apache-2.0endpoints_compatibleregion:usconversational

Runs locally from ~640.3 MB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
0
Likes
0
Pipeline
image-text-to-text
Author

Repository Files & Downloads

8 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
WeMM-Embedding-2B-BF16.ggufGGUFBF164.46 GBDownload
WeMM-Embedding-2B-IQ3_M.ggufGGUFIQ3_M1.19 GBDownload
WeMM-Embedding-2B-IQ4_XS.ggufGGUFIQ4_XS1.37 GBDownload
WeMM-Embedding-2B-Q4_K_M.ggufGGUFQ4_K_M1.45 GBDownload
WeMM-Embedding-2B-Q5_K_M.ggufGGUFQ5_K_M1.64 GBDownload
WeMM-Embedding-2B-Q6_K.ggufGGUFQ6_K1.84 GBDownload
WeMM-Embedding-2B-Q8_0.ggufGGUFQ8_02.38 GBDownload
mmproj-WeMM-Embedding-2B-BF16.ggufGGUFBF16640.3 MBDownload

Model Details

Model IDWeidows/WeMM-Embedding-2B-GGUF
AuthorWeidows
Pipelineimage-text-to-text
Licenseapache-2.0
Base modeltencent/WeMM-Embedding-2B
Last modified2026-08-30T15:44:10.000Z

Model README

---

base_model: tencent/WeMM-Embedding-2B

library_name: gguf

license: apache-2.0

tags:

  • embedding
  • multimodal
  • gguf
  • qwen3_5
  • image-text-to-text
  • video-text-to-text

---

WeMM-Embedding-2B — Quantization Quality (STS-B)

Evaluation set: STS-B test (1,379 sentence pairs, human similarity 0-5). Baseline: BF16 GGUF run in llama.cpp (same engine as all quants), so the measured difference reflects quantization error only.

| Model | Bits/Weight | Size (MB) | STS-B Spearman ρ | Δρ vs BF16 | Emb Cosine vs BF16 | Pair Cosine Pearson vs BF16 |

|---|---|---|---|---|---|---|

| BF16 | 16.00 | 4790.8 | 0.8360 | — | — | — |

| Q8_0 | 8.00 | 2551.3 | 0.8357 | +0.03% | 0.9997 | 1.0000 |

| Q6_K | 5.80 | 1972.8 | 0.8358 | +0.03% | 0.9987 | 0.9999 |

| Q5_K_M | 5.17 | 1760.0 | 0.8361 | -0.01% | 0.9956 | 0.9995 |

| Q4_K_M | 4.85 | 1559.8 | 0.8310 | +0.60% | 0.9854 | 0.9984 |

| IQ4_XS | 4.33 | 1471.4 | 0.8360 | +0.00% | 0.9855 | 0.9985 |

| IQ3_M | 3.76 | 1277.3 | 0.8286 | +0.89% | 0.9263 | 0.9895 |

Metrics

  • STS-B Spearman ρ: rank correlation between model cosine similarities and human similarity scores. Higher is better.
  • Δρ vs BF16: relative drop of ρ against the BF16 baseline. Negative means the quant scored slightly above baseline (within noise).
  • Emb Cosine vs BF16: mean cosine similarity between each sentence's embedding and its BF16 counterpart (space fidelity). 1.0 = identical.
  • Pair Cosine Pearson vs BF16: Pearson correlation of per-pair cosine similarities vs BF16 (ranking fidelity). 1.0 = identical ordering.

Conclusion

  • Q8_0, Q6_K, Q5_K_M and IQ4_XS show negligible quality loss (|Δρ| < 0.05%, Emb Cosine > 0.985) and are safe drop-in replacements.
  • Q4_K_M (4.85 bpw) shows a small but visible drop (Δρ ≈ +0.60%, Emb Cosine 0.985) — notably worse than the equally-sized IQ4_XS, so prefer IQ4_XS or Q5_K_M over Q4_K_M when size is comparable.
  • IQ3_M (3.76 bpw) is the only variant with a clearly measurable drop (Δρ ≈ +0.89%, Emb Cosine 0.93); use only when storage is critical.

Usage (llama.cpp GGUF)

All files here are GGUF and run with llama.cpp. Replace the model file with the quant you downloaded. Use -ngl 999 to offload layers to GPU (omit or -ngl 0 for CPU-only).

Text embedding — command line

llama-embedding \
  -m WeMM-Embedding-2B-Q5_K_M.gguf \
  -p "Represent the meaning of this sentence." \
  --pooling last

Text embedding — HTTP server

llama-server \
  -m WeMM-Embedding-2B-Q5_K_M.gguf \
  --embedding \
  -ngl 999 --host 0.0.0.0 --port 8080

Then request embeddings via the OpenAI-compatible endpoint:

curl http://localhost:8080/v1/embeddings \
  -H "Content-Type: application/json" \
  -d '{"input": "Represent the meaning of this sentence.", "model": "WeMM-Embedding-2B-Q5_K_M"}'

Multimodal (image / video) — HTTP server

The visual projector (mmproj-WeMM-Embedding-2B-BF16.gguf) is required for image and video inputs:

llama-server \
  -m WeMM-Embedding-2B-Q5_K_M.gguf \
  --mmproj mmproj-WeMM-Embedding-2B-BF16.gguf \
  --embedding \
  -ngl 999 --host 0.0.0.0 --port 8080

Send image/video inside the chat content the same way as the base model (interleave image/video before text).

Notes

  • Output is a 2048-dim L2-normalized vector; matryoshka truncation (e.g. --embd-normalize + slicing) follows the base model's matryoshka_dimensions [64, 128, 256, 512, 1024, 2048].
  • Q8_0 / Q4_K_M / BF16 are mirrored from DreamBlooms/WeMM-Embedding-2B-GGUF; Q6_K / Q5_K_M / IQ4_XS / IQ3_M were produced for this repo with llama-quantize from the same BF16 master.

Run Weidows/WeMM-Embedding-2B-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models