CoolFace
Modelpublic

binedge/Qwen3-Embedding-0.6B-FP8

sourceHugging Faceapache-2.0updated 5mo agoView on Hugging Face
1likes429downloads
Model Card

Qwen3-Embedding-0.6B-FP8

FP8-quantized version of `Qwen/Qwen3-Embedding-0.6B`.

This model was quantized with `llm-compressor` using FP8 dynamic activation quantization for the Qwen3 embedding backbone.

Quantization details

  • Base model: Qwen/Qwen3-Embedding-0.6B
  • Quantization tool: llm-compressor
  • Saved format: compressed-tensors
  • Quantization scheme: FP8_DYNAMIC
  • Targets: Linear
  • Ignored modules: none

Quantization recipe

python
from llmcompressor import oneshot
from llmcompressor.modifiers.quantization import QuantizationModifier

recipe = QuantizationModifier(
    targets="Linear",
    scheme="FP8_DYNAMIC",
)

oneshot(model=model, recipe=recipe)

model.save_pretrained("Qwen3-Embedding-0.6B-FP8")
tokenizer.save_pretrained("Qwen3-Embedding-0.6B-FP8")