SVMLinearClassifier
SVMLinearClassifierA model type for constructing a linear support vector classifier, based on MLJScikitLearnInterface.jl, and implementing the MLJ model interface.
From MLJ, the type can be imported using
SVMLinearClassifier = @load SVMLinearClassifier pkg=MLJScikitLearnInterfaceDo model = SVMLinearClassifier() to construct an instance with default hyper-parameters. Provide keyword arguments to override hyper-parameter defaults, as in SVMLinearClassifier(penalty=...).
Hyper-parameters
penalty = l2loss = squared_hingedual = truetol = 0.0001C = 1.0multi_class = ovrfit_intercept = trueintercept_scaling = 1.0random_state = nothingmax_iter = 1000