PIbd-32_Kashin_M.I_API_Cour.../enums.py

11 lines
181 B
Python

from enum import Enum
class TypeMood(str, Enum):
POSITIVE = "Positive"
NEGATIVE = "Negative"
class TypeModel(str, Enum):
LSTM = "LSTM"
GRU = "GRU"
CNN = "CNN"