You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for i, step in enumerate(time_range):
index = total_steps - i - 1
if strength >= 0 and i == int(total_steps * strength) and x0 is not None:
ts = torch.full((b, ), step, device=device, dtype=torch.long)
break
img = self.model.q_sample(x0, ts)
to get xt, and then denoise from this timestep. For controller, we always fetch the last item:
Rerender_A_Video/src/ddim_v_hacked.py
Line 300 in dfaf9d8
When the x0_strength is small, it will be a long waste of time to reach
Rerender_A_Video/src/ddim_v_hacked.py
Line 306 in dfaf9d8
Previous blended img is useless,
Rerender_A_Video/src/ddim_v_hacked.py
Line 308 in dfaf9d8
Maybe we can directly:
to get xt, and then denoise from this timestep. For controller, we always fetch the last item:
The text was updated successfully, but these errors were encountered: