Skip to content

Mode

Mode

Bases: Enum

Mode for stop-go testing.

Source code in bionemo/testing/harnesses/mode.py
20
21
22
23
24
25
class Mode(Enum):
    """Mode for stop-go testing."""

    STOP = auto()
    RESUME = auto()
    CONTINUOUS = auto()