ml_pipeline/src/utils.py

8 lines
103 B
Python

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