From 959f789bc9ba56e963b32a3ff637ed6f0c6ac97b Mon Sep 17 00:00:00 2001 From: Salvatore Rossitto Date: Thu, 12 Mar 2026 19:02:54 +0100 Subject: [PATCH] removed trailing whitespaces --- examples/qlora_training/check_lora_norms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/qlora_training/check_lora_norms.py b/examples/qlora_training/check_lora_norms.py index 8908f3ad99..3f9d20c8c8 100644 --- a/examples/qlora_training/check_lora_norms.py +++ b/examples/qlora_training/check_lora_norms.py @@ -42,10 +42,10 @@ def read_gguf(path): pos = f.tell() align = 32 data_start = (pos + align - 1) & ~(align - 1) - + print(f"\nFile: {path}") print(f"Tensors: {n_tensors}") - + for name, dims, dtype, offset in tensors[:10]: # first 10 if dtype != 0: # only F32 (type 0) print(f" {name}: dims={dims} type={dtype} (non-F32, skipping norm)")