Bartowski has released an updated version of the imatrix dataset, aiming to improve model calibration for the Qwen3.8-27B-GGUF quantized model. The dataset is designed to help quantify the impact of model weights during the quantization process, ensuring more accurate performance assessments. The update includes a combination of prose and conversation data, rendered through a script against the model's chat template, and made publicly available for use. The dataset is part of a broader effort to refine the calibration process and better understand how different text inputs affect model behavior. The release includes detailed information on the dataset's construction and testing procedures, as well as links to the source code and calibration files. Source: huggingface
The updated imatrix dataset was tested across seven models, including Qwen3.5-4B, Qwen3.6-27B, and Mistral-Small-4-119B, among others. The testing focused on evaluating the impact of different datasets on performance metrics such as KLD, BFCL, and MMLU-Pro. Results showed that above 4 bits per weight, the dataset had minimal impact on performance, with most clean datasets showing differences within a couple of percentage points. However, for Q2_K quantization, the inclusion of the imatrix dataset significantly improved performance, with Qwen3.6-35B seeing a 28-point drop in BFCL performance without it. The findings suggest that the imatrix dataset plays a crucial role in enhancing model performance, particularly for lower-bit quantizations and MoE models. Source: huggingface
The imatrix dataset is derived from the calibration process used in llama.cpp quantization, where the algorithm minimizes quantization error by testing various scales and offsets. The dataset is built by feeding text through the model in large batches and accumulating activation data across input channels. This process helps identify which weights are most important to the model's performance, based on how consistently they activate across different inputs. The calibration_datav5.txt file, which was used for all previous model releases, serves as the foundation for the updated dataset. The final version, referred to as imatrix-v6, represents an ongoing refinement process aimed at improving model calibration and performance. Source: huggingface