RidgeRegressor
RidgeRegressorA model type for constructing a ridge regressor, based on MLJScikitLearnInterface.jl, and implementing the MLJ model interface.
From MLJ, the type can be imported using
RidgeRegressor = @load RidgeRegressor pkg=MLJScikitLearnInterfaceDo model = RidgeRegressor() to construct an instance with default hyper-parameters. Provide keyword arguments to override hyper-parameter defaults, as in RidgeRegressor(alpha=...).
Hyper-parameters
alpha = 1.0fit_intercept = truecopy_X = truemax_iter = 1000tol = 0.0001solver = autorandom_state = nothing