Flow
sklearn.svm._classes.LinearSVR

sklearn.svm._classes.LinearSVR

Visibility: public Uploaded 19-11-2021 by b oz sklearn==0.23.2 numpy>=1.13.3 scipy>=0.19.1 joblib>=0.11 threadpoolctl>=2.0.0 0 runs
0 likes downloaded by 0 people 0 issues 0 downvotes , 0 total downloads
  • openml-python python scikit-learn sklearn sklearn_0.23.2
Issue #Downvotes for this reason By


Loading wiki
Help us complete this description Edit
Linear Support Vector Regression. Similar to SVR with parameter kernel='linear', but implemented in terms of liblinear rather than libsvm, so it has more flexibility in the choice of penalties and loss functions and should scale better to large numbers of samples. This class supports both dense and sparse input.

Parameters

CRegularization parameter. The strength of the regularization is inversely proportional to C. Must be strictly positive loss : {'epsilon_insensitive', 'squared_epsilon_insensitive'}, default='epsilon_insensitive' Specifies the loss function. The epsilon-insensitive loss (standard SVR) is the L1 loss, while the squared epsilon-insensitive loss ('squared_epsilon_insensitive') is the L2 lossdefault: 1.0
dualSelect the algorithm to either solve the dual or primal optimization problem. Prefer dual=False when n_samples > n_featuresdefault: true
epsilonEpsilon parameter in the epsilon-insensitive loss function. Note that the value of this parameter depends on the scale of the target variable y. If unsure, set ``epsilon=0``default: 0.0
fit_interceptWhether to calculate the intercept for this model. If set to false, no intercept will be used in calculations (i.e. data is expected to be already centered)default: true
intercept_scalingWhen self.fit_intercept is True, instance vector x becomes [x, self.intercept_scaling], i.e. a "synthetic" feature with constant value equals to intercept_scaling is appended to the instance vector The intercept becomes intercept_scaling * synthetic feature weight Note! the synthetic feature weight is subject to l1/l2 regularization as all other features To lessen the effect of regularization on synthetic feature weight (and therefore on the intercept) intercept_scaling has to be increaseddefault: 1.0
lossdefault: "epsilon_insensitive"
max_iterThe maximum number of iterations to be run.default: 1000
random_stateControls the pseudo random number generation for shuffling the data Pass an int for reproducible output across multiple function calls See :term:`Glossary `default: null
tolTolerance for stopping criteriadefault: 0.0001
verboseEnable verbose output. Note that this setting takes advantage of a per-process runtime setting in liblinear that, if enabled, may not work properly in a multithreaded contextdefault: 0

0
Runs

List all runs
Parameter:
Rendering chart
Rendering table