返回 JoyAI-Echo
causality_axis.py
根目录 / ltx-core / src / ltx_core / model / audio_vae / causality_axis.py
1 from enum import Enum
2
3
4 class CausalityAxis(Enum):
5 """Enum for specifying the causality axis in causal convolutions."""
6
7 NONE = None
8 WIDTH = "width"
9 HEIGHT = "height"
10 WIDTH_COMPATIBILITY = "width-compatibility"
11
11 lines PYTHON