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

13 lines
231 B
Python

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