aboutsummaryrefslogtreecommitdiff
path: root/docs/mllib-data-types.md
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2016-03-08 17:47:55 +0000
committerSean Owen <sowen@cloudera.com>2016-03-08 17:47:55 +0000
commit54040f8d350d2aad3078dcffef808c62b7c0b73d (patch)
tree1eacb775f8426130a3152cf9afd30c47fd5f9143 /docs/mllib-data-types.md
parentca1a7b9d6acf8e1f9b6ab6265f9001c2c7ff8489 (diff)
downloadspark-54040f8d350d2aad3078dcffef808c62b7c0b73d.tar.gz
spark-54040f8d350d2aad3078dcffef808c62b7c0b73d.tar.bz2
spark-54040f8d350d2aad3078dcffef808c62b7c0b73d.zip
[SPARK-13715][MLLIB] Remove last usages of jblas in tests
## What changes were proposed in this pull request? Remove last usage of jblas, in tests ## How was this patch tested? Jenkins tests -- the same ones that are being modified. Author: Sean Owen <sowen@cloudera.com> Closes #11560 from srowen/SPARK-13715.
Diffstat (limited to 'docs/mllib-data-types.md')
-rw-r--r--docs/mllib-data-types.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/mllib-data-types.md b/docs/mllib-data-types.md
index 363dc7c13b..5e3ee472a7 100644
--- a/docs/mllib-data-types.md
+++ b/docs/mllib-data-types.md
@@ -11,7 +11,7 @@ MLlib supports local vectors and matrices stored on a single machine,
as well as distributed matrices backed by one or more RDDs.
Local vectors and local matrices are simple data models
that serve as public interfaces. The underlying linear algebra operations are provided by
-[Breeze](http://www.scalanlp.org/) and [jblas](http://jblas.org/).
+[Breeze](http://www.scalanlp.org/).
A training example used in supervised learning is called a "labeled point" in MLlib.
## Local vector