Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
renzhc
diffusers_dcu
Commits
67dc65e2
Unverified
Commit
67dc65e2
authored
Nov 17, 2025
by
dg845
Committed by
GitHub
Nov 17, 2025
Browse files
Revert `AutoencoderKLWan`'s `dim_mult` default value back to list (#12640)
Revert dim_mult back to list and fix type annotation
parent
3579fdab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/diffusers/models/autoencoders/autoencoder_kl_wan.py
src/diffusers/models/autoencoders/autoencoder_kl_wan.py
+1
-1
No files found.
src/diffusers/models/autoencoders/autoencoder_kl_wan.py
View file @
67dc65e2
...
...
@@ -971,7 +971,7 @@ class AutoencoderKLWan(ModelMixin, AutoencoderMixin, ConfigMixin, FromOriginalMo
base_dim
:
int
=
96
,
decoder_base_dim
:
Optional
[
int
]
=
None
,
z_dim
:
int
=
16
,
dim_mult
:
Tuple
[
int
,
...
]
=
(
1
,
2
,
4
,
4
)
,
dim_mult
:
List
[
int
]
=
[
1
,
2
,
4
,
4
]
,
num_res_blocks
:
int
=
2
,
attn_scales
:
List
[
float
]
=
[],
temperal_downsample
:
List
[
bool
]
=
[
False
,
True
,
True
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment