26
26
------
27
27
28
28
.. list-table ::
29
- :widths: 10 10 30 15
29
+ :widths: 10 10 35 15
30
30
:header-rows: 1
31
31
:align: left
32
32
@@ -48,7 +48,13 @@ on CPU
48
48
- Multi-output and sparse data are not supported.
49
49
* - Classification
50
50
- KNeighborsClassifier
51
- - All parameters except ``metric `` != 'euclidean' or ``minkowski `` with ``p `` != 2.
51
+ -
52
+ - For ``algorithm `` == 'kd_tree':
53
+
54
+ all parameters except ``metric `` != 'euclidean' or 'minkowski' with ``p `` != 2
55
+ - For ``algorithm `` == 'brute':
56
+
57
+ all parameters except ``metric `` not in ['euclidean', 'manhattan', 'minkowski', 'chebyshev', 'cosine']
52
58
- Multi-output and sparse data is not supported.
53
59
* - Classification
54
60
- LogisticRegression
@@ -104,7 +110,13 @@ on CPU
104
110
- Sparse data is not supported.
105
111
* - Unsupervised
106
112
- NearestNeighbors
107
- - All parameters except ``metric `` != 'euclidean' or 'minkowski' with ``p `` != 2.
113
+ -
114
+ - For ``algorithm `` == 'kd_tree':
115
+
116
+ all parameters except ``metric `` != 'euclidean' or 'minkowski' with ``p `` != 2
117
+ - For ``algorithm `` == 'brute':
118
+
119
+ all parameters except ``metric `` not in ['euclidean', 'manhattan', 'minkowski', 'chebyshev', 'cosine']
108
120
- Sparse data is not supported.
109
121
* - Other
110
122
- train_test_split
@@ -145,7 +157,7 @@ on GPU
145
157
- Multi-output, sparse data, out-of-bag score and sample_weight are not supported.
146
158
* - Classification
147
159
- KNeighborsClassifier
148
- - All parameters except ``algorithm `` != 'brute', ``weights `` = 'callable'
160
+ - All parameters except ``algorithm `` != 'brute', ``weights `` = 'callable', `` metric `` not in ['euclidean', 'manhattan', 'minkowski', 'chebyshev', 'cosine'].
149
161
- Only dense data is supported.
150
162
* - Classification
151
163
- LogisticRegression
@@ -157,7 +169,7 @@ on GPU
157
169
- Multi-output, sparse data, out-of-bag score and sample_weight are not supported.
158
170
* - Regression
159
171
- KNeighborsRegressor
160
- - All parameters except ``algorithm `` != 'brute', ``weights `` = 'callable'
172
+ - All parameters except ``algorithm `` != 'brute', ``weights `` = 'callable', `` metric `` != 'euclidean' or 'minkowski' with `` p `` != 2.
161
173
- Only dense data is supported.
162
174
* - Regression
163
175
- LinearRegression
@@ -175,6 +187,10 @@ on GPU
175
187
- PCA
176
188
- All parameters except ``svd_solver `` != 'full'.
177
189
- Sparse data is not supported.
190
+ * - Unsupervised
191
+ - NearestNeighbors
192
+ - All parameters except ``algorithm `` != 'brute', ``weights `` = 'callable', ``metric `` not in ['euclidean', 'manhattan', 'minkowski', 'chebyshev', 'cosine'].
193
+ - Only dense data is supported.
178
194
179
195
.. seealso :: :ref:`oneapi_gpu`
180
196
0 commit comments