Skip to content

Commit 14fe83c

Browse files
committed
Fix typo in SVM docstrings
1 parent d5c57a7 commit 14fe83c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sklearn/svm/classes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def fit(self, X, y):
339339
class SVC(BaseSVC):
340340
"""C-Support Vector Classification.
341341
342-
The implementations is a based on libsvm. The fit time complexity
342+
The implementation is based on libsvm. The fit time complexity
343343
is more than quadratic with the number of samples which makes it hard
344344
to scale to dataset with more than a couple of 10000 samples.
345345
@@ -599,7 +599,7 @@ class SVR(BaseLibSVM, RegressorMixin):
599599
600600
The free parameters in the model are C and epsilon.
601601
602-
The implementations is a based on libsvm.
602+
The implementation is based on libsvm.
603603
604604
Parameters
605605
----------
@@ -707,7 +707,7 @@ class NuSVR(BaseLibSVM, RegressorMixin):
707707
the number of support vectors. However, unlike NuSVC, where nu
708708
replaces C, here nu replaces with the parameter epsilon of SVR.
709709
710-
The implementations is a based on libsvm.
710+
The implementation is based on libsvm.
711711
712712
Parameters
713713
----------

0 commit comments

Comments
 (0)