We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa0681f commit 383bb96Copy full SHA for 383bb96
examples/diffusers/quantization/utils.py
@@ -83,7 +83,9 @@ def filter_func_flux_dev(name: str) -> bool:
83
84
def filter_func_wan_video(name: str) -> bool:
85
"""Filter function specifically for LTX-Video models."""
86
- pattern = re.compile(r".*(patch_embedding|condition_embedder|proj_out).*")
+ pattern = re.compile(
87
+ r".*(patch_embedding|condition_embedder|proj_out|blocks.0\.|blocks.1\.|blocks.39|blocks.38).*"
88
+ )
89
return pattern.match(name) is not None
90
91
0 commit comments