Skip to content

Commit

Permalink
DOC: Link Examples for SVR, NuSVR, and SVM User Guide (#30201)
Browse files Browse the repository at this point in the history
  • Loading branch information
lunovian authored Nov 15, 2024
1 parent a10f5fd commit e02ee36
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sklearn/svm/_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1163,6 +1163,8 @@ class SVR(RegressorMixin, BaseLibSVM):
Specifies the kernel type to be used in the algorithm.
If none is given, 'rbf' will be used. If a callable is given it is
used to precompute the kernel matrix.
For an intuitive visualization of different kernel types
see :ref:`sphx_glr_auto_examples_svm_plot_svm_regression.py`
degree : int, default=3
Degree of the polynomial kernel function ('poly').
Expand Down Expand Up @@ -1361,6 +1363,8 @@ class NuSVR(RegressorMixin, BaseLibSVM):
Specifies the kernel type to be used in the algorithm.
If none is given, 'rbf' will be used. If a callable is given it is
used to precompute the kernel matrix.
For an intuitive visualization of different kernel types see
See :ref:`sphx_glr_auto_examples_svm_plot_svm_regression.py`
degree : int, default=3
Degree of the polynomial kernel function ('poly').
Expand Down

0 comments on commit e02ee36

Please sign in to comment.