This is kind of a dumb question. What is the difference between static and uniform? For some context, I am using animatediff for vid2vid, and I don't use loop. I just cant figure out the difference.
The difference is in the starting frame of the sliding window at a given step:
with static, the window will always start at the first frame for all the steps.
with uniform, the window will start at a different location at each step. In this case the diffusion is more "spread out" and this will increase the consistency of the animation, but it's subtle in a lot of cases
This is kind of a dumb question. What is the difference between static and uniform? For some context, I am using animatediff for vid2vid, and I don't use loop. I just cant figure out the difference.