Source code for csle_common.dao.system_identification.system_model_type

from enum import IntEnum


[docs]class SystemModelType(IntEnum): """ Enum representing the different system model types in CSLE """ GAUSSIAN_MIXTURE = 0 EMPIRICAL_DISTRIBUTION = 1 GAUSSIAN_PROCESS = 2 MCMC = 3