Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Lightricks/LTX-Video-Playground
AashishNKumar
/
proj11
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
57e1f05
proj11
/
xora
/
utils
/
conditioning_method.py
Sapir
Lint: added ruff.
325137b
4 months ago
raw
Copy download link
history
blame
Safe
204 Bytes
from
enum
import
Enum
class
ConditioningMethod
(
Enum
):
UNCONDITIONAL =
"unconditional"
FIRST_FRAME =
"first_frame"
LAST_FRAME =
"last_frame"
FIRST_AND_LAST_FRAME =
"first_and_last_frame"