SVMClassifier
SVMClassifierA model type for constructing a C-support vector classifier, based on MLJScikitLearnInterface.jl, and implementing the MLJ model interface.
From MLJ, the type can be imported using
SVMClassifier = @load SVMClassifier pkg=MLJScikitLearnInterfaceDo model = SVMClassifier() to construct an instance with default hyper-parameters. Provide keyword arguments to override hyper-parameter defaults, as in SVMClassifier(C=...).
Hyper-parameters
C = 1.0kernel = rbfdegree = 3gamma = scalecoef0 = 0.0shrinking = truetol = 0.001cache_size = 200max_iter = -1decision_function_shape = ovrrandom_state = nothing