Skip to content

Commit db83525

Browse files
committed
fix typo for skip layer print usage
does not match in parse_args
1 parent 4ae878d commit db83525

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/cli/main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,9 @@ void print_usage(int argc, const char* argv[]) {
207207
printf(" --cfg-scale SCALE unconditional guidance scale: (default: 7.0)\n");
208208
printf(" --slg-scale SCALE skip layer guidance (SLG) scale, only for DiT models: (default: 0)\n");
209209
printf(" 0 means disabled, a value of 2.5 is nice for sd3.5 medium\n");
210-
printf(" --skip_layers LAYERS Layers to skip for SLG steps: (default: [7,8,9])\n");
211-
printf(" --skip_layer_start START SLG enabling point: (default: 0.01)\n");
212-
printf(" --skip_layer_end END SLG disabling point: (default: 0.2)\n");
210+
printf(" --skip-layers LAYERS Layers to skip for SLG steps: (default: [7,8,9])\n");
211+
printf(" --skip-layer-start START SLG enabling point: (default: 0.01)\n");
212+
printf(" --skip-layer-end END SLG disabling point: (default: 0.2)\n");
213213
printf(" SLG will be enabled at step int([STEPS]*[START]) and disabled at int([STEPS]*[END])\n");
214214
printf(" --strength STRENGTH strength for noising/unnoising (default: 0.75)\n");
215215
printf(" --style-ratio STYLE-RATIO strength for keeping input identity (default: 20%%)\n");

0 commit comments

Comments
 (0)