evalml.pipelines.TimeSeriesClassificationPipeline¶
-
class
evalml.pipelines.
TimeSeriesClassificationPipeline
(parameters, random_state=None, random_seed=0)[source]¶ Pipeline base class for time series classifcation problems.
-
name
= 'Time Series Classification Pipeline'¶
-
custom_name
= None¶
-
problem_type
= None¶
Instance attributes
classes_
Gets the class names for the problem.
feature_importance
Return importance associated with each feature.
parameters
Returns parameter dictionary for this pipeline
Methods:
Machine learning pipeline for time series classification problems made out of transformers and a classifier.
Determine whether the threshold of a binary classification pipeline can be tuned.
Constructs a new pipeline with the same components, parameters, and random state.
Transforms the data by applying all pre-processing components.
Outputs pipeline details including component parameters
Fit a time series classification pipeline.
Returns component by name
Generate an image representing the pipeline graph
Generate a bar graph of the pipeline’s feature importance
Loads pipeline at file path
Make predictions using selected features.
Make probability estimates for labels.
Saves pipeline at file path
Evaluate model performance on current and additional objectives.
-