mirror of
https://git.datalinker.icu/kijai/ComfyUI-CogVideoXWrapper.git
synced 2025-12-09 21:04:23 +08:00
remove prints
This commit is contained in:
parent
d0d7308da5
commit
81adb0220b
2
nodes.py
2
nodes.py
@ -188,7 +188,7 @@ class CogVideoTransformerEdit:
|
|||||||
@classmethod
|
@classmethod
|
||||||
def INPUT_TYPES(s):
|
def INPUT_TYPES(s):
|
||||||
return {"required": {
|
return {"required": {
|
||||||
"remove_blocks": ("STRING", {"default": "40", "multiline": True, "tooltip": "Comma separated list of block indices to remove, 5b blocks: 0-41, 2b model blocks 0-29"} ),
|
"remove_blocks": ("STRING", {"default": "15, 25, 37", "multiline": True, "tooltip": "Comma separated list of block indices to remove, 5b blocks: 0-41, 2b model blocks 0-29"} ),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -451,7 +451,7 @@ class CogVideoXPipeline(VideoSysPipeline):
|
|||||||
latents
|
latents
|
||||||
)
|
)
|
||||||
latents = latents.to(self.vae.dtype)
|
latents = latents.to(self.vae.dtype)
|
||||||
print("latents", latents.shape)
|
#print("latents", latents.shape)
|
||||||
|
|
||||||
# 5.5.
|
# 5.5.
|
||||||
if image_cond_latents is not None:
|
if image_cond_latents is not None:
|
||||||
@ -500,7 +500,7 @@ class CogVideoXPipeline(VideoSysPipeline):
|
|||||||
else:
|
else:
|
||||||
temporal_tiling = False
|
temporal_tiling = False
|
||||||
print("Temporal tiling disabled")
|
print("Temporal tiling disabled")
|
||||||
print("latents.shape", latents.shape)
|
#print("latents.shape", latents.shape)
|
||||||
|
|
||||||
with self.progress_bar(total=num_inference_steps) as progress_bar:
|
with self.progress_bar(total=num_inference_steps) as progress_bar:
|
||||||
old_pred_original_sample = None # for DPM-solver++
|
old_pred_original_sample = None # for DPM-solver++
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user