Add HyperoptState enum and container class

This commit is contained in:
Matthias
2022-08-19 15:11:43 +02:00
parent 1c6f966579
commit 08ef5ad2d8
3 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from enum import Enum
class HyperoptState(Enum):
""" Hyperopt states """
STARTUP = 1
DATALOAD = 2
INDICATORS = 3
OPTIMIZE = 0
def __str__(self):
return f"{self.name.lower()}"