Replies: 1 comment
-
And a quick follow-up question as well, what is the best way to re-use the AnimateDiff beta schedule / noising schedule in a custom node? I'm trying to write a custom node which noises the latents using the AnimateDiff schedule. So far, I have a basic node that accepts an encoded image, repeats it
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The AnimateDiff paper states that inputs take the form:
B x C x F x H x W
and are reshaped to(B x F) x (C x W x H)
.I was reading through this code-base to understand the implementation, and I see:
ComfyUI-AnimateDiff-Evolved/animatediff/nodes.py
Line 437 in 29dee14
Am I correct in assuming that here:
B
= 1 (batch size 1)F
=batch_size
C
= 4 (the number of input channels, presumably after encoding using the VAE?)Beta Was this translation helpful? Give feedback.
All reactions