CoolFace
Modelpublic

Sohailhosseini/NuExtract3-FP8

sourceHugging Faceapache-2.0updated 1mo agoView on Hugging Face
0likes27downloads
Model Card

NuExtract3 - FP8

`numind/NuExtract3` quantized to FP8 (8-bit weights).

What this is

Near-lossless, no calibration data, and it halves every Linear weight. The safe default when you care about quality and have Ada/Hopper or newer.

Caveat. Needs compute capability >= 8.9 (Ada/Hopper+) to run fast.

Details

Sourcenumind/NuExtract3
SchemeFP8 (8-bit)
Formatcompressed-tensors
Parameters4.5B
Size on disk5.5 GB
Compression1.68x smaller than the 9.3 GB source
Left unquantizedlm_head, re:.*visual.*, re:.*vision_tower.*, re:.*vision_model.*, re:.*vision.*, re:.*multi_modal_projector.*, re:.*merger.*
Quantized onH100 NVL
Quantized bySohailhosseini

Usage

bash
vllm serve Sohailhosseini/NuExtract3-FP8 \
  --max-model-len 32768
python
from vllm import LLM, SamplingParams

if __name__ == "__main__":
    llm = LLM("Sohailhosseini/NuExtract3-FP8", max_model_len=32768)
    out = llm.chat(
        [{"role": "user", "content": "What is quantization? Answer in one sentence."}],
        SamplingParams(temperature=0.6, max_tokens=512),
    )
    print(out[0].outputs[0].text)

Provenance

Produced with HF-quantized. recipe.yaml in this repo is the exact modifier stack that was applied, and the scheme, ignored layers and hardware are in the table above.

Licence is inherited from the source model. Quantization does not change what you are permitted to do with the weights.