From bb573b2f9e2ea1770d6e2aa45806571f0cc39425 Mon Sep 17 00:00:00 2001 From: Johannes Stelzer Date: Fri, 17 Feb 2023 10:51:38 +0100 Subject: [PATCH] fix --- example1_standard.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/example1_standard.py b/example1_standard.py index d8559f9..9089e54 100644 --- a/example1_standard.py +++ b/example1_standard.py @@ -51,13 +51,14 @@ fps = 30 lb = LatentBlending(sdh) lb.set_prompt1(prompt1) lb.set_prompt2(prompt2) -#FIXME AssertionError: Either specify t_compute_max_allowed or nmb_max_branches + # Run latent blending imgs_transition = lb.run_transition( depth_strength = depth_strength, t_compute_max_allowed = t_compute_max_allowed, fixed_seeds = fixed_seeds ) + # Let's get more cheap frames via linear interpolation (duration_transition*fps frames) imgs_transition_ext = add_frames_linear_interp(imgs_transition, duration_transition, fps)