Views
No views yet
TL;DR
- Quantized with W4A16 (INT4 weights / A16 activations) or W8A16 (INT8 weights / A16 activations) for vLLM via
--quantization compressed-tensors.- 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; group size 128;
lm_headkept in higher 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 if applicable)chat_template.jinja (inherits the finetune’s chat style)Exact file lists may differ between branches — see Files and versions for each revision.
lm_head (kept in higher precision).num_bits=4, type="int", symmetric=True)"group" with group_size=128 (Marlin-friendly layout)neuralmagic/LLM_compression_calibration, split trainmessages 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 directlyThis mirrors the exact group size, sequence length, sample count, and dataset parameters used in the previous quantization script you provided.
pip install vllmCUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 \
vllm serve TheHouseOfTheDude/M2411-123B-Animus-V12.0_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/M2411-123B-Animus-V12.0_Compressed-Tensors",
"messages": [
{"role":"system","content":"You are Animus — helpful, precise, and safe."},
{"role":"user","content":"Draft a scene outline with shifting perspectives."}
],
"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.