We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58b198b commit 54d3fe9Copy full SHA for 54d3fe9
1 file changed
src/maxdiffusion/tests/test_ltx2_utils.py
@@ -89,8 +89,15 @@ def test_load_vae_weights(self):
89
in_channels=3,
90
out_channels=3,
91
latent_channels=128,
92
- block_out_channels=(128, 256, 512, 512),
93
- layers_per_block=(4, 3, 3, 3, 4),
+ block_out_channels=(256, 512, 1024, 2048),
+ 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),
101
upsample_factor=(2, 2, 2)
102
)
103
0 commit comments