Skip to content

Commit 7b5e29b

Browse files
authored
LTXV VAE decoder: switch default padding mode (Comfy-Org#8930)
1 parent ebce6a7 commit 7b5e29b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)