mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-08-02 23:14:49 +08:00
LTXV VAE decoder: switch default padding mode (#8930)
This commit is contained in:
@@ -973,7 +973,7 @@ class VideoVAE(nn.Module):
|
|||||||
norm_layer=config.get("norm_layer", "group_norm"),
|
norm_layer=config.get("norm_layer", "group_norm"),
|
||||||
causal=config.get("causal_decoder", False),
|
causal=config.get("causal_decoder", False),
|
||||||
timestep_conditioning=self.timestep_conditioning,
|
timestep_conditioning=self.timestep_conditioning,
|
||||||
spatial_padding_mode=config.get("spatial_padding_mode", "zeros"),
|
spatial_padding_mode=config.get("spatial_padding_mode", "reflect"),
|
||||||
)
|
)
|
||||||
|
|
||||||
self.per_channel_statistics = processor()
|
self.per_channel_statistics = processor()
|
||||||
|
Reference in New Issue
Block a user