TimeSeriesBinaryClassificationPipeline.
__init__
Machine learning pipeline for time series classification problems made out of transformers and a classifier.
component_graph (list): List of components in order. Accepts strings or ComponentBase subclasses in the list
parameters (dict) – Dictionary with component names as keys and dictionary of that component’s parameters as values. An empty dictionary {} implies using all default values for component parameters. Pipeline-level parameters such as gap and max_delay must be specified with the “pipeline” key. For example: Pipeline(parameters={“pipeline”: {“max_delay”: 4, “gap”: 2}}).
random_state (int, np.random.RandomState) – The random seed/state. Defaults to 0.