Shiv-AI-Video-Generator / ltx_video /utils /skip_layer_strategy.py
Shriramnag's picture
Synced official GitHub structure with Shiv AI branding
a5682ef verified
raw
history blame contribute delete
169 Bytes
from enum import Enum, auto
class SkipLayerStrategy(Enum):
AttentionSkip = auto()
AttentionValues = auto()
Residual = auto()
TransformerBlock = auto()