Skip to content

Commit e5a63a0

Browse files
dusenberrymwsrowen
authored andcommitted
[DOCS] [MLLIB] Fixing misformatted links in v1.4 MLlib Naive Bayes documentation by removing space and newline characters.
A couple of links in the MLlib Naive Bayes documentation for v1.4 were broken due to the addition of either space or newline characters between the link title and link URL in the markdown doc. (Interestingly enough, they are rendered correctly in the GitHub viewer, but not when compiled to HTML by Jekyll.) Author: Mike Dusenberry <[email protected]> Closes #6412 from dusenberrymw/Fix_Broken_Links_In_MLlib_Naive_Bayes_Docs and squashes the following commits: 91a4028 [Mike Dusenberry] Fixing misformatted links by removing space and newline characters.
1 parent 8dbe777 commit e5a63a0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/mllib-naive-bayes.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ and use it for prediction.
1414

1515
MLlib supports [multinomial naive
1616
Bayes](http://en.wikipedia.org/wiki/Naive_Bayes_classifier#Multinomial_naive_Bayes)
17-
and [Bernoulli naive Bayes] (http://nlp.stanford.edu/IR-book/html/htmledition/the-bernoulli-model-1.html).
18-
These models are typically used for [document classification]
19-
(http://nlp.stanford.edu/IR-book/html/htmledition/naive-bayes-text-classification-1.html).
17+
and [Bernoulli naive Bayes](http://nlp.stanford.edu/IR-book/html/htmledition/the-bernoulli-model-1.html).
18+
These models are typically used for [document classification](http://nlp.stanford.edu/IR-book/html/htmledition/naive-bayes-text-classification-1.html).
2019
Within that context, each observation is a document and each
2120
feature represents a term whose value is the frequency of the term (in multinomial naive Bayes) or
2221
a zero or one indicating whether the term was found in the document (in Bernoulli naive Bayes).

0 commit comments

Comments
 (0)