aboutsummaryrefslogtreecommitdiff
path: root/examples/src/main/python/ml/elementwise_product_example.py
diff options
context:
space:
mode:
authorhyukjinkwon <gurwls223@gmail.com>2016-06-10 18:29:26 -0700
committerJoseph K. Bradley <joseph@databricks.com>2016-06-10 18:29:26 -0700
commit99f3c82776fe5ea4f89a9965a288c7447585dc2c (patch)
tree1448dbcb50d8cad1f7635aa6e58b584e920ebded /examples/src/main/python/ml/elementwise_product_example.py
parentbba5d7999f7b3ae9d816ea552ba9378fea1615a6 (diff)
downloadspark-99f3c82776fe5ea4f89a9965a288c7447585dc2c.tar.gz
spark-99f3c82776fe5ea4f89a9965a288c7447585dc2c.tar.bz2
spark-99f3c82776fe5ea4f89a9965a288c7447585dc2c.zip
[SPARK-14615][ML][FOLLOWUP] Fix Python examples to use the new ML Vector and Matrix APIs in the ML pipeline based algorithms
## What changes were proposed in this pull request? This PR fixes Python examples to use the new ML Vector and Matrix APIs in the ML pipeline based algorithms. I firstly executed this shell command, `grep -r "from pyspark.mllib" .` and then executed them all. Some of tests in `ml` produced the error messages as below: ``` pyspark.sql.utils.IllegalArgumentException: u'requirement failed: Input type must be VectorUDT but got org.apache.spark.mllib.linalg.VectorUDTf71b0bce.' ``` So, I fixed them to use new ones just identically with some Python tests fixed in https://github.com/apache/spark/pull/12627 ## How was this patch tested? Manually tested for all the examples listed by `grep -r "from pyspark.mllib" .`. Author: hyukjinkwon <gurwls223@gmail.com> Closes #13393 from HyukjinKwon/SPARK-14615.
Diffstat (limited to 'examples/src/main/python/ml/elementwise_product_example.py')
-rw-r--r--examples/src/main/python/ml/elementwise_product_example.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/src/main/python/ml/elementwise_product_example.py b/examples/src/main/python/ml/elementwise_product_example.py
index 41727edcdb..598deae886 100644
--- a/examples/src/main/python/ml/elementwise_product_example.py
+++ b/examples/src/main/python/ml/elementwise_product_example.py
@@ -19,7 +19,7 @@ from __future__ import print_function
# $example on$
from pyspark.ml.feature import ElementwiseProduct
-from pyspark.mllib.linalg import Vectors
+from pyspark.ml.linalg import Vectors
# $example off$
from pyspark.sql import SparkSession