Views
No views yet
TL;DR
- Quantized with W8A16 (INT8 weights / A16 activations) for vLLM via
--quantization compressed-tensors.- Three branches (different group sizes): W8A16_GS32, W8A16_GS64, W8A16_GS128.
- Same calibration recipe as our recent cards: 512 chat samples, 2048 max sequence length, dataset
neuralmagic/LLM_compression_calibration(messages rendered with the model’s chat template).- Weight-only AWQ;
lm_headkept high-precision; exported withsave_compressed=True.
Themainbranch is a landing page (model card + links). Runnable artifacts live in per-quant branches.
*.safetensors) + index (model.safetensors.index.json)config.json with compressed-tensors metadata (weight_format, quantization, quantization_config, etc.)tokenizer.json, tokenizer.model, merges/vocab as applicable)chat_template.jinja (inherits the finetune’s chat style)Exact file lists may differ between branches — see Files and versions for each revision.
llmcompressor oneshot pipeline with an AWQModifier (weight-only quantization).lm_head (kept high-precision).num_bits=8, type="int", symmetric=True)"group" with group size ∈ {32, 64, 128} depending on branchneuralmagic/LLM_compression_calibration, split trainmessages list is rendered via tokenizer.apply_chat_template(..., tokenize=False), then tokenized with:
max_length=2048, truncation=True, padding=False, add_special_tokens=Falseoneshot(..., max_seq_length=2048, num_calibration_samples=512, tokenizer=tokenizer) on the preprocessed datasetsave_compressed=True so vLLM loads the compressed-tensors runtime layout directlypip install vllmCUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 \
vllm serve TheHouseOfTheDude/Llama_3.x_70b_Hexagon_Purple_V3_Compressed-Tensors \
--quantization compressed-tensors \
--tensor-parallel-size 8 \
--max-model-len 2048 \
--gpu-memory-utilization 0.70 \
--dtype bfloat16curl http://localhost:8000/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "TheHouseOfTheDude/Llama_3.x_70b_Hexagon_Purple_V3_Compressed-Tensors",
"messages": [
{"role":"system","content":"You are Hexagon Purple — helpful, precise, and safe."},
{"role":"user","content":"Draft a character-driven opening scene in under 250 words."}
],
"max_tokens": 512,
"temperature": 0.7,
"top_p": 0.95
}'Note:compressed-tensorsis a vLLM runtime format. Loading directly with vanilla 🤗 Transformers is not supported.
For Transformers, use a compatible quant (e.g., GPTQ/AWQ export) or the full-precision finetune.
chat_template.jinja is present, libraries that support apply_chat_template will automatically format messages.--max-model-len and batch size.