SVMLinearRegressor
SVMLinearRegressorA model type for constructing a linear support vector regressor, based on MLJScikitLearnInterface.jl, and implementing the MLJ model interface.
From MLJ, the type can be imported using
SVMLinearRegressor = @load SVMLinearRegressor pkg=MLJScikitLearnInterfaceDo model = SVMLinearRegressor() to construct an instance with default hyper-parameters. Provide keyword arguments to override hyper-parameter defaults, as in SVMLinearRegressor(epsilon=...).
Hyper-parameters
epsilon = 0.0tol = 0.0001C = 1.0loss = epsilon_insensitivefit_intercept = trueintercept_scaling = 1.0dual = truerandom_state = nothingmax_iter = 1000