8000 Revert "DOC references for probabilistic SVC (#12859)" · xhluca/scikit-learn@4012a5d · GitHub < 8000 /head>
[go: up one dir, main page]

Skip to content

Commit 4012a5d

Browse files
author
Xing
committed
Revert "DOC references for probabilistic SVC (scikit-learn#12859)"
This reverts commit e89aadf.
1 parent 6c938fb commit 4012a5d

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

sklearn/svm/classes.py

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -563,9 +563,10 @@ class SVC(BaseSVC):
563563
probability=False, an empty array. Platt scaling uses the logistic
564564
function
565565
``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.
569570
570571
Examples
571572
--------
@@ -592,14 +593,11 @@ class SVC(BaseSVC):
592593
implemented using liblinear. Check the See also section of
593594
LinearSVC for more comparison element.
594595
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>`__
603601
"""
604602

605603
_impl = 'c_svc'

0 commit comments

Comments
 (0)
0