pull/734/head
hithereai 2023-05-21 22:38:01 +03:00 committed by GitHub
parent fe66d0aa0f
commit 39c6689a01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,7 @@ def render_interpolation(args, anim_args, video_args, parseq_args, loop_args, co
args.checkpoint = keys.checkpoint_schedule_series[frame_idx] if anim_args.enable_checkpoint_scheduling else None
if anim_args.enable_subseed_scheduling:
root.subseed = int(keys.subseed_schedule_series[frame_idx])
root.subseed = keys.subseed_strength_schedule_series[frame_idx]
root.subseed_strength = keys.subseed_strength_schedule_series[frame_idx]
else:
root.subseed, root.subseed_strength = keys.subseed_schedule_series[frame_idx], keys.subseed_strength_schedule_series[frame_idx]
if use_parseq:
@ -155,4 +155,4 @@ def render_interpolation(args, anim_args, video_args, parseq_args, loop_args, co
if args.seed_behavior != 'schedule':
args.seed = next_seed(args, root)
frame_idx += 1
frame_idx += 1