Skip to content

Commit a5e6c13

Browse files
committed
fix
1 parent 178c22d commit a5e6c13

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

tests/lora/test_lora_layers_ltx_video.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,19 @@ class LTXVideoLoRATests(unittest.TestCase, PeftLoraLoaderMixinTests):
5252
}
5353
transformer_cls = LTXVideoTransformer3DModel
5454
vae_kwargs = {
55+
"in_channels": 3,
56+
"out_channels": 3,
5557
"latent_channels": 8,
5658
"block_out_channels": (8, 8, 8, 8),
57-
"spatio_temporal_scaling": (True, True, False, False),
59+
"decoder_block_out_channels": (8, 8, 8, 8),
5860
"layers_per_block": (1, 1, 1, 1, 1),
61+
"decoder_layers_per_block": (1, 1, 1, 1, 1),
62+
"spatio_temporal_scaling": (True, True, False, False),
63+
"decoder_spatio_temporal_scaling": (True, True, False, False),
64+
"decoder_inject_noise": (False, False, False, False, False),
65+
"upsample_residual": (False, False, False, False),
66+
"upsample_factor": (1, 1, 1, 1),
67+
"timestep_conditioning": False,
5968
"patch_size": 1,
6069
"patch_size_t": 1,
6170
"encoder_causal": True,

0 commit comments

Comments
 (0)