Pipeline# class sklearn.pipeline.Pipeline(steps, *, transform_input=None, memory=None, verbose=False)[source]# A sequence of data transformers with an optional final predictor. Pipeline allows you to sequentially apply a list of transformers to preprocess the data and, if desired, conclude the sequence with a final predictor for predictive modeling. Intermediate steps of the pipeline must be trans