Pipeline
- class spectral_indices.pipeline.Pipeline(transformations: List[Transformation], name='', description: str = '')[source]
Pipeline wraps a succession of transformations into a unique object. It can be serialized and registerd in PipelineRegistry for CLI commands. All transformations will be applied in the order of the transformation list. Pipeline can be serialized to json and be instantiate from a json.
- Parameters:
transformations (List[Transformation]) – List of all the Transformations that are used in pipeline
name (str, optional) – Name of the pipeline (it will the way to access registered pipeline through factory). Defaults to “”.
description (str, optional) – Description of pipeline. Defaults to “”.