Quiz 5 Question 2 of 20

What is the difference between Pipeline([('scaler', StandardScaler()), ('clf', LogisticRegression())]) and make_pipeline(StandardScaler(), LogisticRegression()) in scikit-learn?

Select an answer to reveal the explanation.

Motivation