Ganesh Krishnan created SPARK-16912:
---------------------------------------

             Summary: Wrong import in Machine Learning documentation 
                 Key: SPARK-16912
                 URL: https://issues.apache.org/jira/browse/SPARK-16912
             Project: Spark
          Issue Type: Documentation
    Affects Versions: 2.0.0
            Reporter: Ganesh Krishnan
            Priority: Trivial


The Machine Learning documentation for Spark
http://spark.apache.org/docs/latest/ml-features.html
 imports 
import org.apache.spark.mllib.linalg.Vector;

This throws a class cast exception at runtime
For my project:

Exception in thread "main" java.lang.ClassCastException: 
org.apache.spark.ml.linalg.SparseVector cannot be cast to 
org.apache.spark.mllib.linalg.Vector
        at 
xyz.shoten.puddleloader.parquetcreator.IDFGenerator.main(IDFGenerator.java:55)

It needs to import

import org.apache.spark.ml.linalg.Vector;

Note: The package is ml instead of mlib




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org

Reply via email to