ml_pipeline/utils.py

8 lines
103 B
Python

from enum import Enum, auto
class Stage(Enum):
TRAIN = auto()
DEV = auto()
TEST = auto()