Skip to content

Commit f46abfe

Browse files
authored
fixed axes_dims_rope init (huggingface#11641) (#11678)
1 parent 73a9d58 commit f46abfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/diffusers/models/transformers/transformer_flux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def __init__(
241241
joint_attention_dim: int = 4096,
242242
pooled_projection_dim: int = 768,
243243
guidance_embeds: bool = False,
244-
axes_dims_rope: Tuple[int] = (16, 56, 56),
244+
axes_dims_rope: Tuple[int, int, int] = (16, 56, 56),
245245
):
246246
super().__init__()
247247
self.out_channels = out_channels or in_channels

0 commit comments

Comments
 (0)