LTX-Video-Playground / ltx_video /utils /skip_layer_strategy.py
eranlevinlt's picture
Update to version 0.9.1: Added LTX video folder and app.py modifications
39c1a84
raw
history blame
106 Bytes
from enum import Enum, auto
class SkipLayerStrategy(Enum):
Attention = auto()
Residual = auto()