From 891a21e5993130cd51e5d97457fabf068614a115 Mon Sep 17 00:00:00 2001 From: Rahul Tuli Date: Wed, 2 Apr 2025 22:38:31 +0000 Subject: [PATCH] Use: warning over warn --- src/axolotl/utils/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/axolotl/utils/models.py b/src/axolotl/utils/models.py index 61823f369..ba71ea459 100644 --- a/src/axolotl/utils/models.py +++ b/src/axolotl/utils/models.py @@ -150,7 +150,7 @@ def check_model_config(cfg: DictDefault, model_config: PretrainedConfig): if is_compressed_tensors_config: if model_config.quantization_config.get("config_groups"): - LOG.warn( + LOG.warning( "Found `config_groups` in a compressed-tensors config. " "QAT integration with llmcompressor is not tested." )