Skip to content

Commit b9c3d87

Browse files
bharatr21jnothman
authored andcommitted
[MRG] DOC: Fix unusual phrasing in svm.SVC (#13774)
1 parent 384c8ad commit b9c3d87

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sklearn/svm/classes.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -429,10 +429,10 @@ def fit(self, X, y, sample_weight=None):
429429
class SVC(BaseSVC):
430430
"""C-Support Vector Classification.
431431
432-
The implementation is based on libsvm. The fit time complexity
433-
is more than quadratic with the number of samples which makes it hard
434-
to scale to datasets with more than a couple of 10000 samples. For large
435-
datasets consider using :class:`sklearn.linear_model.LinearSVC` or
432+
The implementation is based on libsvm. The fit time scales at least
433+
quadratically with the number of samples and may be impractical
434+
beyond tens of thousands of samples. For large datasets
435+
consider using :class:`sklearn.linear_model.LinearSVC` or
436436
:class:`sklearn.linear_model.SGDClassifier` instead, possibly after a
437437
:class:`sklearn.kernel_approximation.Nystroem` transformer.
438438

0 commit comments

Comments
 (0)