LTX-Video-Playground / ltx_video /utils /skip_layer_strategy.py
yoavhacohen's picture
0.9.1+zero (#1)
fc22870 verified
raw
history blame
106 Bytes
from enum import Enum, auto
class SkipLayerStrategy(Enum):
Attention = auto()
Residual = auto()