LogisticCombinerHyperParams#
- class openstef_meta.models.forecast_combiners.LogisticCombinerHyperParams(**data: Any) None[source]
Bases:
HyperParamsHyperparameters for the logistic regression classifier.
- Parameters:
data (
Any)
-
fit_intercept:
bool
-
penalty:
Literal['l1','l2','elasticnet']
-
c:
float
- get_classifier() ClassifierMixin[source]
Create a logistic regression classifier from these hyperparameters.
- Return type:
- Returns:
Configured LogisticRegression instance.
- model_config: ClassVar[ConfigDict] = {'arbitrary_types_allowed': False, 'extra': 'ignore', 'protected_namespaces': ()}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].