Skip to content

Commit cda899f

Browse files
corrections in svm support table (#2709)
1 parent 754d32d commit cda899f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/sources/algorithms.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ Classification
4040
- Parameters
4141
- Data formats
4242
* - :obj:`sklearn.svm.SVC`
43-
- All parameters are supported
43+
- ``kernel`` must be one of [``"linear"``, ``"rbf"``, ``"poly"``, ``"sigmoid"``]
4444
- No limitations
4545
* - :obj:`sklearn.svm.NuSVC`
46-
- All parameters are supported
46+
- ``kernel`` must be one of [``"linear"``, ``"rbf"``, ``"poly"``, ``"sigmoid"``]
4747
- No limitations
4848
* - :obj:`sklearn.ensemble.RandomForestClassifier`
4949
- All parameters are supported except:
@@ -89,10 +89,10 @@ Regression
8989
- Parameters
9090
- Data formats
9191
* - :obj:`sklearn.svm.SVR`
92-
- All parameters are supported
92+
- ``kernel`` must be one of [``"linear"``, ``"rbf"``, ``"poly"``, ``"sigmoid"``]
9393
- No limitations
9494
* - :obj:`sklearn.svm.NuSVR`
95-
- All parameters are supported
95+
- ``kernel`` must be one of [``"linear"``, ``"rbf"``, ``"poly"``, ``"sigmoid"``]
9696
- No limitations
9797
* - :obj:`sklearn.ensemble.RandomForestRegressor`
9898
- All parameters are supported except:
@@ -281,7 +281,7 @@ Classification
281281
* - :obj:`sklearn.svm.SVC`
282282
- All parameters are supported except:
283283

284-
- ``kernel`` = `'sigmoid_poly'`
284+
- ``kernel`` not in [``"linear"``, ``"rbf"``]
285285
- ``class_weight`` != `None`
286286
- Only binary dense data is supported
287287
* - :obj:`sklearn.ensemble.RandomForestClassifier`

0 commit comments

Comments
 (0)