From e76c8ed68bf2f9d82f12d87715438f56cede956e Mon Sep 17 00:00:00 2001 From: Eugene Fairley Date: Sun, 29 Jun 2025 12:31:06 -0700 Subject: [PATCH] 'save' --- comfy/model_base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/comfy/model_base.py b/comfy/model_base.py index 11624c6b0..19bd489c2 100644 --- a/comfy/model_base.py +++ b/comfy/model_base.py @@ -1157,7 +1157,8 @@ def patch_motion( print("point_feature shape:", point_feature.shape) out_feature = merge_final(point_feature, vert_weight, vert_index).permute(3, 0, 1, 2) # T - 1, H, W, C => C, T - 1, H, W out_weight = vert_weight.sum(-1) # T - 1, H, W - + + print("out_weight shape:", out_weight) # out feature -> already soft weighted mix_feature = out_feature + vid[vae_divide[0]:, 1:] * (1 - out_weight.clamp(0, 1))