fix: update help text for cfg_trunc_ratio argument

This commit is contained in:
Kohya S
2025-07-15 21:53:13 +09:00
parent e0fcb5152a
commit 25771a5180

View File

@@ -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",