mirror of
https://github.com/Wan-Video/Wan2.1.git
synced 2025-11-04 22:26:36 +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()
|