11 lines
182 B
Python
11 lines
182 B
Python
|
from enum import Enum
|
||
|
|
||
|
class TypeMood(str, Enum):
|
||
|
POSITIVE = "Posititve"
|
||
|
NEGATIVE = "Negative"
|
||
|
|
||
|
class TypeModel(str, Enum):
|
||
|
LSTM = "LSTM"
|
||
|
GRU = "GRU"
|
||
|
CNN = "CNN"
|