Aduc-sdr-cinematic-video / ltx_video /utils /skip_layer_strategy.py
Carlexxx
feat: Implement self-contained specialist managers
f350af2
raw
history blame
169 Bytes
from enum import Enum, auto
class SkipLayerStrategy(Enum):
AttentionSkip = auto()
AttentionValues = auto()
Residual = auto()
TransformerBlock = auto()