Spaces:
Runtime error
Runtime error
File size: 124 Bytes
fc22870 |
1 2 3 4 5 6 7 |
from enum import Enum
class ConditioningMethod(Enum):
UNCONDITIONAL = "unconditional"
FIRST_FRAME = "first_frame"
|