Command-A-111B-Animus-V12.0 — Quantized (compressed-tensors for vLLM, Cohere Command A lineage)

This repository provides quantized runtime builds of
Darkhn/Command-A-111B-Animus-V12.0 (a finetune in the Cohere Command A lineage), repackaged for vLLM using the compressed-tensors format.

TL;DR

  • Quantized with W4A16 (INT4 weights / A16 activations) for vLLM via --quantization compressed-tensors.
  • Three group-size variants: W4A16_GS32, W4A16_GS64, W4A16_GS128 (see “Why group size matters” below).
  • Calibration: 512 chat samples, 2048 max sequence length, dataset neuralmagic/LLM_compression_calibration (messages rendered with the tokenizer’s chat template).
  • Weight-only AWQ; lm_head kept high-precision; exported with save_compressed=True for direct vLLM loading.

About the base (Cohere Command A)

Cohere’s Command A family targets robust tool use, RAG, and agentic workflows with strong multilingual coverage. The 111B-parameter variant emphasizes long-context reasoning and high throughput relative to earlier Command models. This quantization does not alter training, tokenizer, chat template, or safety layers—it only changes weight representation for efficient inference.


Revisions & Branches

The main branch is a landing page (model card + links). Runnable artifacts live in per-quant branches.

  • main — placeholder / landing page
  • W4A16_GS32 — INT4 weights, group size 32 (highest fidelity)
  • W4A16_GS64 — INT4, group size 64 (balanced default)
  • W4A16_GS128 — INT4, group size 128 (leanest scales; fastest/lowest VRAM)

Quick links


What’s inside (per revision)

  • Sharded quantized weights (*.safetensors) + index (model.safetensors.index.json)
  • config.json with compressed-tensors metadata (weight_format, quantization, quantization_config, etc.)
  • Tokenizer artifacts (tokenizer.json, tokenizer.model, merges/vocab as applicable)
  • Optional: chat_template.jinja (inherits the finetune’s chat style)

Exact file lists may differ between branches — see Files and versions for each revision.


Quantization & calibration details (recipe family used in recent cards)

Method / flow

  • llmcompressor oneshot pipeline with an AWQModifier (weight-only quantization).

Targets / exclusions

  • Quantize Linear layers; ignore lm_head (kept high-precision).

Weights / grouping

  • INT4 (num_bits=4, type="int", symmetric=True)
  • Strategy: "group" with group size ∈ {32, 64, 128} depending on branch
  • Activations are not quantized (runtime A16: BF16/FP16)

Calibration dataset & preprocessing

  • Dataset: neuralmagic/LLM_compression_calibration, split train
  • NUM_CALIBRATION_SAMPLES = 512 (random subset with fixed seed)
  • MAX_SEQUENCE_LENGTH = 2048
  • Each sample’s messages list is rendered via the tokenizer’s
    apply_chat_template(..., tokenize=False), then tokenized with:
    • max_length=2048, truncation=True, padding=False, add_special_tokens=False

Compression call

  • oneshot(..., max_seq_length=2048, num_calibration_samples=512, tokenizer=tokenizer) on the preprocessed dataset

Export for vLLM

  • Saved with save_compressed=True so vLLM loads the compressed-tensors runtime layout directly

Why group size matters in AWQ (W4A16)

  • Definition: Group size controls how many consecutive weights share one set of quantization scales.
  • Trade-offs (accuracy ↔ throughput/VRAM):
    • GS32 (smallest groups): Most scale sets → highest fidelity (often best perplexity/task scores), but larger scale metadata, slightly more bandwidth, and somewhat lower throughput.
    • GS64 (middle ground): Balanced quality and performance; strong default choice.
    • GS128 (largest groups): Fewest scale sets → leanest/faster (less bandwidth/metadata), with slightly higher quantization error; ideal for throughput-critical serving.

Context length

  • Calibration context: up to 2048 tokens per sample (as above).
  • Model context window: inherited from the Command A lineage; quantization does not change rope/position encodings—only the numeric representation of the weights.

Quickstart — vLLM (compressed-tensors)

Install vLLM (recent version recommended):

pip install vllm

Serve (adjust to your hardware):

CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 \
vllm serve TheHouseOfTheDude/Command-A-111B-Animus-V12.0_Compressed-Tensors \
  --quantization compressed-tensors \
  --tensor-parallel-size 8 \
  --max-model-len 2048 \
  --gpu-memory-utilization 0.70 \
  --dtype bfloat16

Example Chat Completions:

curl http://localhost:8000/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "TheHouseOfTheDude/Command-A-111B-Animus-V12.0_Compressed-Tensors",
    "messages": [
      {"role":"system","content":"You are Animus — 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-tensors is 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.


Prompting / chat template

This package follows the finetuned parent’s chat conventions. If a chat_template.jinja is present, libraries that support apply_chat_template will automatically format messages.

Guidelines:

  • Keep the system message concise (behavior, tone, safety constraints).
  • Provide clear user instructions; for multi-step tasks, list steps explicitly.

Intended use & safety

This quantization:

  • Does not change underlying behavior or content tendencies.
  • Only changes weight storage for efficient inference.

Because the finetuned parent is flagged “not for all audiences,” apply appropriate content filters / policies for your deployment context.


Lineage


Hardware tips

  • 100B-class models benefit from multi-GPU tensor parallel for throughput; interconnect bandwidth (NVLink/IB) helps.
  • Long contexts are KV-cache heavy — tune --max-model-len and batch size.
  • Prefer BF16 on GPUs with native support; otherwise FP16.
  • Consider CUDA Graphs if stable in your environment.

Changelog

  • V12.0 (current) — Initial compressed-tensors W4A16 quantization with 512-sample / 2048-token AWQ calibration; branches W4A16_GS32 / W4A16_GS64 / W4A16_GS128 published; vLLM-ready packaging.
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for TheHouseOfTheDude/Command-A-111B-Animus-V12.0_Compressed-Tensors

Quantized
(3)
this model