feat: add paramType to Strategy Parameters

This commit is contained in:
Matthias
2026-02-06 18:21:42 +01:00
parent a7e35f5d78
commit bea006880b

View File

@@ -70,6 +70,10 @@ class BaseParameter(ABC):
def __repr__(self):
return f"{self.__class__.__name__}({self.value})"
@property
def param_type(self) -> str:
return self.__class__.__name__
@abstractmethod
def get_space(self, name: str) -> Union["Integer", "Real", "SKDecimal", "Categorical"]:
"""