Question 20
Which of the following options represent(s) the correct method(s) to search for the best regularization parameter for ridge regression?
Search for the best regularization rate with built-in cross validation in RidgeCV estimator
Step 1: Instantiate object of Ridge estimator.
Step 2: Set parameter alpha to the maximum regularization rate.Use cross validation with Ridge to search for best regularization.
Apply cross validation with SGDRegressor for searching the best regularization parameter.