Skip to content

Commit 376ac51

Browse files
committed
Merge pull request scikit-learn#3465 from pvnguyen/patch-1
Update outlier_detection.rst
2 parents f3afd4e + 0b8e63c commit 376ac51

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

doc/modules/outlier_detection.rst

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ coming from the same population than the initial
5353
observations. Otherwise, if they lay outside the frontier, we can say
5454
that they are abnormal with a given confidence in our assessment.
5555

56-
The One-Class SVM has been introduced in [1] for that purpose and
57-
implemented in the :ref:`svm` module in the
56+
The One-Class SVM has been introduced by Schölkopf et al. for that purpose
57+
and implemented in the :ref:`svm` module in the
5858
:class:`svm.OneClassSVM` object. It requires the choice of a
5959
kernel and a scalar parameter to define a frontier. The RBF kernel is
6060
usually chosen although there exists no exact formula or algorithm to
@@ -63,6 +63,12 @@ implementation. The :math:`\nu` parameter, also known as the margin of
6363
the One-Class SVM, corresponds to the probability of finding a new,
6464
but regular, observation outside the frontier.
6565

66+
.. topic:: References:
67+
68+
* `Estimating the support of a high-dimensional distribution
69+
<http://dl.acm.org/citation.cfm?id=1119749>`_ Schölkopf,
70+
Bernhard, et al. Neural computation 13.7 (2001): 1443-1471.
71+
6672
.. topic:: Examples:
6773

6874
* See :ref:`example_svm_plot_oneclass.py` for visualizing the
@@ -73,7 +79,7 @@ but regular, observation outside the frontier.
7379
:target: ../auto_examples/svm/plot_oneclasse.html
7480
:align: center
7581
:scale: 75%
76-
82+
7783

7884
Outlier Detection
7985
=================

0 commit comments

Comments
 (0)