Skip to content

Commit df62bd2

Browse files
authored
DOC Correct some typos in SVM documentation (scikit-learn#30794)
1 parent 547c23f commit df62bd2

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

doc/modules/svm.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@ dual coefficients :math:`\alpha_i` are zero for the other samples.
666666
These parameters can be accessed through the attributes ``dual_coef_``
667667
which holds the product :math:`y_i \alpha_i`, ``support_vectors_`` which
668668
holds the support vectors, and ``intercept_`` which holds the independent
669-
term :math:`b`
669+
term :math:`b`.
670670

671671
.. note::
672672

@@ -675,7 +675,7 @@ term :math:`b`
675675
equivalence between the amount of regularization of two models depends on
676676
the exact objective function optimized by the model. For example, when the
677677
estimator used is :class:`~sklearn.linear_model.Ridge` regression,
678-
the relation between them is given as :math:`C = \frac{1}{alpha}`.
678+
the relation between them is given as :math:`C = \frac{1}{\alpha}`.
679679

680680
.. dropdown:: LinearSVC
681681

@@ -801,15 +801,16 @@ used, please refer to their respective papers.
801801
802802
.. [#5] Bishop, `Pattern recognition and machine learning
803803
<https://www.microsoft.com/en-us/research/uploads/prod/2006/01/Bishop-Pattern-Recognition-and-Machine-Learning-2006.pdf>`_,
804-
chapter 7 Sparse Kernel Machines
804+
chapter 7 Sparse Kernel Machines.
805805
806806
.. [#6] :doi:`"A Tutorial on Support Vector Regression"
807807
<10.1023/B:STCO.0000035301.49549.88>`
808808
Alex J. Smola, Bernhard Schölkopf - Statistics and Computing archive
809809
Volume 14 Issue 3, August 2004, p. 199-222.
810810
811811
.. [#7] Schölkopf et. al `New Support Vector Algorithms
812-
<https://www.stat.purdue.edu/~yuzhu/stat598m3/Papers/NewSVM.pdf>`_
812+
<https://www.stat.purdue.edu/~yuzhu/stat598m3/Papers/NewSVM.pdf>`_,
813+
Neural Computation 12, 1207-1245 (2000).
813814
814815
.. [#8] Crammer and Singer `On the Algorithmic Implementation of Multiclass
815816
Kernel-based Vector Machines

0 commit comments

Comments
 (0)