File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Linear and quadratic discriminant analysis
88
99Linear discriminant analysis (:class: `lda.LDA `) and
1010quadratic discriminant analysis (:class: `qda.QDA `)
11- are two basic classifiers, with, as their names suggest, a linear and a
11+ are two standard classifiers, with, as their names suggest, a linear and a
1212quadratic decision surface, respectively.
1313
1414These classifiers are attractive because they have closed-form solutions that
@@ -57,7 +57,7 @@ which model the class conditional distribution of the data :math:`P(X|y=k)`
5757for each class :math: `k`. Predictions can then be obtained by using Bayes' rule:
5858
5959.. math ::
60- P(y=k | X) = \frac {P(X | y=k) P(y=k)}{P(X)} = \frac {P(X | y=k) P(Y )}{ \sum _{l} P(X | y=l) \cdot P(y=l)}
60+ P(y=k | X) = \frac {P(X | y=k) P(y=k)}{P(X)} = \frac {P(X | y=k) P(y = k )}{ \sum _{l} P(X | y=l) \cdot P(y=l)}
6161
6262 and we select the class :math: `k` which maximizes this conditional probability.
6363
You can’t perform that action at this time.
0 commit comments