Skip to content

Commit 9bc2798

Browse files
authored
LTXV VAE decoder: switch default padding mode (Comfy-Org#8930)
1 parent 50afba7 commit 9bc2798

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

comfy/ldm/lightricks/vae/causal_video_autoencoder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -973,7 +973,7 @@ def __init__(self, version=0, config=None):
973973
norm_layer=config.get("norm_layer", "group_norm"),
974974
causal=config.get("causal_decoder", False),
975975
timestep_conditioning=self.timestep_conditioning,
976-
spatial_padding_mode=config.get("spatial_padding_mode", "zeros"),
976+
spatial_padding_mode=config.get("spatial_padding_mode", "reflect"),
977977
)
978978

979979
self.per_channel_statistics = processor()

0 commit comments

Comments
 (0)