File tree Expand file tree Collapse file tree 1 file changed +9
-11
lines changed Expand file tree Collapse file tree 1 file changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -563,9 +563,10 @@ class SVC(BaseSVC):
563
563 probability=False, an empty array. Platt scaling uses the logistic
564
564
function
565
565
``1 / (1 + exp(decision_value * probA_ + probB_))``
566
- where ``probA_`` and ``probB_`` are learned from the dataset [2]_. For
567
- more information on the multiclass case and training procedure see
568
- section 8 of [1]_.
566
+ where ``probA_`` and ``probB_`` are learned from the dataset. For more
567
+ information on the multiclass case and training procedure see section
568
+ 8 of LIBSVM: A Library for Support Vector Machines (in References)
569
+ for more.
569
570
570
571
Examples
571
572
--------
@@ -592,14 +593,11 @@ class SVC(BaseSVC):
592
593
implemented using liblinear. Check the See also section of
593
594
LinearSVC for more comparison element.
594
595
595
- References
596
- ----------
597
- .. [1] `LIBSVM: A Library for Support Vector Machines
598
- <http://www.csie.ntu.edu.tw/~cjlin/papers/libsvm.pdf>`_
599
-
600
- .. [2] `Platt, John (1999). "Probabilistic outputs for support vector
601
- machines and comparison to regularizedlikelihood methods."
602
- <http://citeseer.ist.psu.edu/viewdoc/summary?doi=10.1.1.41.1639>`_
596
+ Notes
597
+ -----
598
+ **References:**
599
+ `LIBSVM: A Library for Support Vector Machines
600
+ <http://www.csie.ntu.edu.tw/~cjlin/papers/libsvm.pdf>`__
603
601
"""
604
602
605
603
_impl = 'c_svc'
You can’t perform that action at this time.
0 commit comments