Skip to content

Commit 54d3fe9

Browse files
committed
fixed with config
1 parent 58b198b commit 54d3fe9

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

src/maxdiffusion/tests/test_ltx2_utils.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,15 @@ def test_load_vae_weights(self):
8989
in_channels=3,
9090
out_channels=3,
9191
latent_channels=128,
92-
block_out_channels=(128, 256, 512, 512),
93-
layers_per_block=(4, 3, 3, 3, 4),
92+
block_out_channels=(256, 512, 1024, 2048),
93+
decoder_block_out_channels=(256, 512, 1024),
94+
layers_per_block=(4, 6, 6, 2, 2),
95+
decoder_layers_per_block=(5, 5, 5, 5),
96+
spatio_temporal_scaling=(True, True, True, True),
97+
decoder_spatio_temporal_scaling=(True, True, True),
98+
decoder_inject_noise=(False, False, False, False),
99+
downsample_type=("spatial", "temporal", "spatiotemporal", "spatiotemporal"),
100+
upsample_residual=(True, True, True),
94101
upsample_factor=(2, 2, 2)
95102
)
96103

0 commit comments

Comments
 (0)