RidgeClassifier
RidgeClassifierA model type for constructing a ridge regression classifier, based on MLJScikitLearnInterface.jl, and implementing the MLJ model interface.
From MLJ, the type can be imported using
RidgeClassifier = @load RidgeClassifier pkg=MLJScikitLearnInterfaceDo model = RidgeClassifier() to construct an instance with default hyper-parameters. Provide keyword arguments to override hyper-parameter defaults, as in RidgeClassifier(alpha=...).
Hyper-parameters
alpha = 1.0fit_intercept = truecopy_X = truemax_iter = nothingtol = 0.001class_weight = nothingsolver = autorandom_state = nothing