mirror of
https://github.com/Wan-Video/Wan2.1.git
synced 2025-11-05 14:33:15 +00:00
9 lines
169 B
Python
9 lines
169 B
Python
from enum import Enum, auto
|
|
|
|
|
|
class SkipLayerStrategy(Enum):
|
|
AttentionSkip = auto()
|
|
AttentionValues = auto()
|
|
Residual = auto()
|
|
TransformerBlock = auto()
|