Skip to content

Commit 7c55ef5

Browse files
committed
up
1 parent 0b76fea commit 7c55ef5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/diffusers/models/autoencoders/autoencoder_kl_mochi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -472,9 +472,9 @@ class AutoencoderKLMochi(ModelMixin, ConfigMixin):
472472
def __init__(
473473
self,
474474
out_channels: int = 3,
475-
block_out_channels: Tuple[int] = (128, 256, 256, 512),
475+
block_out_channels: Tuple[int] = (128, 256, 512, 768),
476476
latent_channels: int = 12,
477-
layers_per_block: int = 3,
477+
layers_per_block: Tuple[int, ...] = (3, 3, 4, 6, 3),
478478
act_fn: str = "silu",
479479
temporal_expansions: Tuple[int, ...] = (1, 2, 3),
480480
spatial_expansions: Tuple[int, ...] = (2, 2, 2),

0 commit comments

Comments
 (0)