File size: 204 Bytes
86b1a7e
 
325137b
86b1a7e
 
 
 
325137b
1
2
3
4
5
6
7
8
9
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"