aboutsummaryrefslogtreecommitdiff
path: root/docs/ml-features.md
diff options
context:
space:
mode:
authorBenFradet <benjamin.fradet@gmail.com>2015-12-14 13:50:30 +0000
committerSean Owen <sowen@cloudera.com>2015-12-14 13:50:30 +0000
commite25f1fe42747be71c6b6e6357ca214f9544e3a46 (patch)
tree74c9b34886a12884026930ca5788ec6aca2cdebc /docs/ml-features.md
parented87f6d3b48a85391628c29c43d318c26e2c6de7 (diff)
downloadspark-e25f1fe42747be71c6b6e6357ca214f9544e3a46.tar.gz
spark-e25f1fe42747be71c6b6e6357ca214f9544e3a46.tar.bz2
spark-e25f1fe42747be71c6b6e6357ca214f9544e3a46.zip
[MINOR][DOC] Fix broken word2vec link
Follow-up of [SPARK-12199](https://issues.apache.org/jira/browse/SPARK-12199) and #10193 where a broken link has been left as is. Author: BenFradet <benjamin.fradet@gmail.com> Closes #10282 from BenFradet/SPARK-12199.
Diffstat (limited to 'docs/ml-features.md')
-rw-r--r--docs/ml-features.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ml-features.md b/docs/ml-features.md
index 158f3f2018..677e4bfb91 100644
--- a/docs/ml-features.md
+++ b/docs/ml-features.md
@@ -63,7 +63,7 @@ the [IDF Python docs](api/python/pyspark.ml.html#pyspark.ml.feature.IDF) for mor
`Word2VecModel`. The model maps each word to a unique fixed-size vector. The `Word2VecModel`
transforms each document into a vector using the average of all words in the document; this vector
can then be used for as features for prediction, document similarity calculations, etc.
-Please refer to the [MLlib user guide on Word2Vec](mllib-feature-extraction.html#word2Vec) for more
+Please refer to the [MLlib user guide on Word2Vec](mllib-feature-extraction.html#word2vec) for more
details.
In the following code segment, we start with a set of documents, each of which is represented as a sequence of words. For each document, we transform it into a feature vector. This feature vector could then be passed to a learning algorithm.