-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
LinearSVR: Default value for epsilon is incorrectly documented #13552
Copy link
Copy link
Closed
Labels
Documentationgood first issueEasy with clear instructions to resolveEasy with clear instructions to resolvehelp wanted
Description
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
| epsilon : float, optional (default=0.1) |
In __init__:
scikit-learn/sklearn/svm/classes.py
Line 361 in 26f6909
| def __init__(self, epsilon=0.0, tol=1e-4, C=1.0, |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Documentationgood first issueEasy with clear instructions to resolveEasy with clear instructions to resolvehelp wanted