evalml.pipelines.components.ElasticNetClassifier

Inheritance diagram of ElasticNetClassifier
class evalml.pipelines.components.ElasticNetClassifier(alpha=0.5, l1_ratio=0.5, n_jobs=-1, max_iter=1000, random_state=0, **kwargs)[source]

Elastic Net Classifier.

name = 'Elastic Net Classifier'
model_family = 'linear_model'
supported_problem_types = [<ProblemTypes.BINARY: 'binary'>, <ProblemTypes.MULTICLASS: 'multiclass'>]
hyperparameter_ranges = {'alpha': Real(low=0, high=1, prior='uniform', transform='identity'), 'l1_ratio': Real(low=0, high=1, prior='uniform', transform='identity')}
default_parameters = {'alpha': 0.5, 'l1_ratio': 0.5, 'max_iter': 1000, 'n_jobs': -1}

Instance attributes

feature_importance

Returns importance associated with each feature.

parameters

Returns the parameters which were used to initialize the component

Methods:

__init__

Initialize self.

clone

Constructs a new component with the same parameters

describe

Describe a component and its parameters

fit

Fits component to data

predict

Make predictions using selected features.

predict_proba

Make probability estimates for labels.