What problem does it solve? Deploying large language models (7B-70B) requires more GPU memory than most hardware provides, and naive quantization degrades accuracy. This Skill guides activation-aware 4-bit weight quantization that reduces memory footprint by up to 4x while keeping accuracy loss under 5%. ## Core Features & Use Cases - Model Quantization: Quantize models like Mistral, Llama, and Qwen to 4-bit using AutoAWQ with configurable group size, zero-point, and kernel versions (GEMM, GEMV, Marlin, ExLlama). - Deployment Integration: Load pre-quantized AWQ models through HuggingFace Transformers or serve them with vLLM for production inference. - Kernel & Hardware Selection: Choose between GEMM for batch inference, GEMV for single-token generation, Marlin for Ampere+ GPUs, and ExLlama for AMD hardware. - Use Case: You need to deploy a Mistral-7B chat model on a single RTX 4090. Quantize it with AWQ to shrink memory from 14 GB to 5.5 GB and serve it through vLLM with roughly 3x faster inference than FP16. ## Quick Start Quantize my Mistral-7B model to 4-bit using AWQ and show me how to load it with vLLM for inference.