What problem does it solve? Quantizing large language models typically requires calibration datasets and hours of processing with methods like GPTQ or AWQ. This Skill enables fast, calibration-free weight quantization to 8/4/3/2/1-bit precision, reducing model memory footprint for deployment on limited GPU hardware. ## Core Features & Use Cases - Calibration-Free Quantization: Quantize any model in minutes using HqqConfig with HuggingFace Transformers, no sample data required. - Multiple Inference Backends: Switch between PyTorch, ATEN, TorchAO, Marlin, and BitBlas backends for optimized inference on different GPU hardware. - Framework Integration: Deploy quantized models with vLLM, fine-tune them with LoRA/PEFT, and save or push quantized models to the HuggingFace Hub. - Use Case: Quantize Llama-3.1-8B to 4-bit with group_size=64, serve it through vLLM with quantization="hqq", then apply LoRA adapters for domain-specific fine-tuning. ## Quick Start Quantize the model meta-llama/Llama-3.1-8B to 4-bit precision with HQQ and verify the generation quality.