The documentation for LinearSVR says that the default value for epsilon is 0.1, but in the code it is 0. Either update the documentation or the default value in __init__.
In LinearSVR's docstring:
|
epsilon : float, optional (default=0.1) |
In __init__:
|
def __init__(self, epsilon=0.0, tol=1e-4, C=1.0, |
The documentation for LinearSVR says that the default value for epsilon is 0.1, but in the code it is 0. Either update the documentation or the default value in
__init__.In
LinearSVR's docstring:scikit-learn/sklearn/svm/classes.py
Line 262 in 26f6909
In
__init__:scikit-learn/sklearn/svm/classes.py
Line 361 in 26f6909