Click or drag to resize
Accord.NET (logo)

BaseSupportVectorRegressionTModel, TKernel, TInputEpsilon Property

Insensitivity zone ε. Increasing the value of ε can result in fewer support vectors in the created model. Default value is 1e-3.

Namespace:  Accord.MachineLearning.VectorMachines.Learning
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
public double Epsilon { get; set; }
Request Example View Source

Property Value

Type: Double
Remarks
Parameter ε controls the width of the ε-insensitive zone, used to fit the training data. The value of ε can affect the number of support vectors used to construct the regression function. The bigger ε, the fewer support vectors are selected. On the other hand, bigger ε-values results in more flat estimates.
See Also