File tree 1 file changed +11
-9
lines changed 1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -563,10 +563,9 @@ 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. 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.
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]_.
570
569
571
570
Examples
572
571
--------
@@ -593,11 +592,14 @@ class SVC(BaseSVC):
593
592
implemented using liblinear. Check the See also section of
594
593
LinearSVC for more comparison element.
595
594
596
- Notes
597
- -----
598
- **References:**
599
- `LIBSVM: A Library for Support Vector Machines
600
- <http://www.csie.ntu.edu.tw/~cjlin/papers/libsvm.pdf>`__
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>`_
601
603
"""
602
604
603
605
_impl = 'c_svc'
You can’t perform that action at this time.
0 commit comments