Question 16
Consider the following RidgeClassifier implementation in Python:
from sklearn.pipeline import make_pipelinefrom sklearn.preprocessing import MinMaxScalerfrom sklearn.linear_model import RidgeClassifier
X = [[1, 2], [2, 3], [3, 4]]y = [0, 1, 0]
pipeline = make_pipeline(MinMaxScaler(), RidgeClassifier(alpha=1.0, fit_intercept=True))pipeline.fit(X, y)Which of the following statements are correct? (Select all that apply)