Skip to content

Commit

Permalink
flux/sd3 default shift value should be closer to 3 than 1
Browse files Browse the repository at this point in the history
  • Loading branch information
bghira committed Oct 23, 2024
1 parent 1a83e36 commit 4a7d423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/configuration/cmd_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def get_argument_parser():
parser.add_argument(
"--flux_schedule_shift",
type=float,
default=None,
default=3,
help=(
"Shift the noise schedule. This is a value between 0 and ~4.0, where 0 disables the timestep-dependent shift,"
" and anything greater than 0 will shift the timestep sampling accordingly. The SD3 model was trained with"
Expand Down

1 comment on commit 4a7d423

@mhirki
Copy link
Contributor

@mhirki mhirki commented on 4a7d423 Oct 24, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will probably break some old configs because --flux_schedule_shift has priority over --flux_schedule_auto_shift.

Please sign in to comment.