From 25771a5180a134190c0e9b540ee5a074ff70e6cd Mon Sep 17 00:00:00 2001 From: Kohya S Date: Tue, 15 Jul 2025 21:53:13 +0900 Subject: [PATCH] fix: update help text for cfg_trunc_ratio argument --- lumina_minimal_inference.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lumina_minimal_inference.py b/lumina_minimal_inference.py index d829616b..691ee418 100644 --- a/lumina_minimal_inference.py +++ b/lumina_minimal_inference.py @@ -231,7 +231,7 @@ def setup_parser() -> argparse.ArgumentParser: "--cfg_trunc_ratio", type=float, default=0.25, - help="The ratio of the timestep interval to apply normalization-based guidance scale. For example, 0.25 means the last 25% of timesteps will be guided.", + help="The ratio of the timestep interval to apply normalization-based guidance scale. For example, 0.25 means the first 25% of timesteps will be guided.", ) parser.add_argument( "--renorm_cfg",