[jira] [Comment Edited] (SPARK-11530) Return eigenvalues with PCA model

2016-02-22 Thread Abou Haydar Elias (JIRA)

[ 
https://issues.apache.org/jira/browse/SPARK-11530?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15156631#comment-15156631
 ] 

Abou Haydar Elias edited comment on SPARK-11530 at 2/22/16 8:46 AM:


If I may ask, even thought this is resolved in 2.0, but can't we go for a quick 
fix using the java_wrapper to compute the SVD then extract the eigenvectors? 
Practicly, it's 20 lines of code. 

See here for more details : http://stackoverflow.com/a/33500704/3415409



was (Author: elie a.):
If I may ask, even thought this is resolved in 2.0, but can't we go for a quick 
fix using the java_wrapper to compute the SVD then extract the eigenvectors. 
Practicl, it's 20 lines of code. 

See here for more details : http://stackoverflow.com/a/33500704/3415409


> Return eigenvalues with PCA model
> -
>
> Key: SPARK-11530
> URL: https://issues.apache.org/jira/browse/SPARK-11530
> Project: Spark
>  Issue Type: Improvement
>  Components: ML, MLlib
>Affects Versions: 1.5.1
>Reporter: Christos Iraklis Tsatsoulis
>Assignee: Sean Owen
>Priority: Minor
> Fix For: 2.0.0
>
>
> For data scientists & statisticians, PCA is of little use if they cannot 
> estimate the _proportion of variance explained_ by selecting _k_ principal 
> components (see here for the math details: 
> https://inst.eecs.berkeley.edu/~ee127a/book/login/l_sym_pca.html , section 
> 'Explained variance'). To estimate this, one only needs the eigenvalues of 
> the covariance matrix.
> Although the eigenvalues are currently computed during PCA model fitting, 
> they are not _returned_; hence, as it stands now, PCA in Spark ML is of 
> extremely limited practical use.
> For details, see these SO questions
> http://stackoverflow.com/questions/33428589/pyspark-and-pca-how-can-i-extract-the-eigenvectors-of-this-pca-how-can-i-calcu/
>  (pyspark)
> http://stackoverflow.com/questions/33559599/spark-pca-top-components (Scala)
> and this blog post http://www.nodalpoint.com/pca-in-spark-1-5/



--
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



[jira] [Comment Edited] (SPARK-11530) Return eigenvalues with PCA model

2015-11-09 Thread Christos Iraklis Tsatsoulis (JIRA)

[ 
https://issues.apache.org/jira/browse/SPARK-11530?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=14996533#comment-14996533
 ] 

Christos Iraklis Tsatsoulis edited comment on SPARK-11530 at 11/9/15 1:40 PM:
--

I edited it to target both; there are `PCA.scala` scripts for both ML & MLLib, 
but since I am using it via PySpark, where it is available only via ML, I 
initially omitted MLlib


was (Author: ctsats):
I edited it to target both; there are PCA.scala scripts for both 
ML & MLLib, but since I am using it via PySpark, where it is available only via 
ML, I initially omitted MLlib

> Return eigenvalues with PCA model
> -
>
> Key: SPARK-11530
> URL: https://issues.apache.org/jira/browse/SPARK-11530
> Project: Spark
>  Issue Type: Improvement
>  Components: ML, MLlib
>Affects Versions: 1.5.1
>Reporter: Christos Iraklis Tsatsoulis
>
> For data scientists & statisticians, PCA is of little use if they cannot 
> estimate the _proportion of variance explained_ by selecting _k_ principal 
> components (see here for the math details: 
> https://inst.eecs.berkeley.edu/~ee127a/book/login/l_sym_pca.html , section 
> 'Explained variance'). To estimate this, one only needs the eigenvalues of 
> the covariance matrix.
> Although the eigenvalues are currently computed during PCA model fitting, 
> they are not _returned_; hence, as it stands now, PCA in Spark ML is of 
> extremely limited practical use.
> For details, see these SO questions
> http://stackoverflow.com/questions/33428589/pyspark-and-pca-how-can-i-extract-the-eigenvectors-of-this-pca-how-can-i-calcu/
>  (pyspark)
> http://stackoverflow.com/questions/33559599/spark-pca-top-components (Scala)
> and this blog post http://www.nodalpoint.com/pca-in-spark-1-5/



--
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



[jira] [Comment Edited] (SPARK-11530) Return eigenvalues with PCA model

2015-11-09 Thread Christos Iraklis Tsatsoulis (JIRA)

[ 
https://issues.apache.org/jira/browse/SPARK-11530?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=14996533#comment-14996533
 ] 

Christos Iraklis Tsatsoulis edited comment on SPARK-11530 at 11/9/15 1:45 PM:
--

I edited it to target both; there are PCA.scala scripts for both ML & MLLib, 
but since I am using it via PySpark, where it is available only via ML, I 
initially omitted MLlib


was (Author: ctsats):
I edited it to target both; there are `PCA.scala` scripts for both ML & MLLib, 
but since I am using it via PySpark, where it is available only via ML, I 
initially omitted MLlib

> Return eigenvalues with PCA model
> -
>
> Key: SPARK-11530
> URL: https://issues.apache.org/jira/browse/SPARK-11530
> Project: Spark
>  Issue Type: Improvement
>  Components: ML, MLlib
>Affects Versions: 1.5.1
>Reporter: Christos Iraklis Tsatsoulis
>
> For data scientists & statisticians, PCA is of little use if they cannot 
> estimate the _proportion of variance explained_ by selecting _k_ principal 
> components (see here for the math details: 
> https://inst.eecs.berkeley.edu/~ee127a/book/login/l_sym_pca.html , section 
> 'Explained variance'). To estimate this, one only needs the eigenvalues of 
> the covariance matrix.
> Although the eigenvalues are currently computed during PCA model fitting, 
> they are not _returned_; hence, as it stands now, PCA in Spark ML is of 
> extremely limited practical use.
> For details, see these SO questions
> http://stackoverflow.com/questions/33428589/pyspark-and-pca-how-can-i-extract-the-eigenvectors-of-this-pca-how-can-i-calcu/
>  (pyspark)
> http://stackoverflow.com/questions/33559599/spark-pca-top-components (Scala)
> and this blog post http://www.nodalpoint.com/pca-in-spark-1-5/



--
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



[jira] [Comment Edited] (SPARK-11530) Return eigenvalues with PCA model

2015-11-09 Thread Christos Iraklis Tsatsoulis (JIRA)

[ 
https://issues.apache.org/jira/browse/SPARK-11530?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=14996533#comment-14996533
 ] 

Christos Iraklis Tsatsoulis edited comment on SPARK-11530 at 11/9/15 1:50 PM:
--

I edited it to target both; there are PCA.scala scripts for both ML & MLlib, 
but since I am using it via PySpark, where it is available only via ML, I 
initially omitted MLlib.


was (Author: ctsats):
I edited it to target both; there are PCA.scala scripts for both ML & MLLib, 
but since I am using it via PySpark, where it is available only via ML, I 
initially omitted MLlib

> Return eigenvalues with PCA model
> -
>
> Key: SPARK-11530
> URL: https://issues.apache.org/jira/browse/SPARK-11530
> Project: Spark
>  Issue Type: Improvement
>  Components: ML, MLlib
>Affects Versions: 1.5.1
>Reporter: Christos Iraklis Tsatsoulis
>
> For data scientists & statisticians, PCA is of little use if they cannot 
> estimate the _proportion of variance explained_ by selecting _k_ principal 
> components (see here for the math details: 
> https://inst.eecs.berkeley.edu/~ee127a/book/login/l_sym_pca.html , section 
> 'Explained variance'). To estimate this, one only needs the eigenvalues of 
> the covariance matrix.
> Although the eigenvalues are currently computed during PCA model fitting, 
> they are not _returned_; hence, as it stands now, PCA in Spark ML is of 
> extremely limited practical use.
> For details, see these SO questions
> http://stackoverflow.com/questions/33428589/pyspark-and-pca-how-can-i-extract-the-eigenvectors-of-this-pca-how-can-i-calcu/
>  (pyspark)
> http://stackoverflow.com/questions/33559599/spark-pca-top-components (Scala)
> and this blog post http://www.nodalpoint.com/pca-in-spark-1-5/



--
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



[jira] [Comment Edited] (SPARK-11530) Return eigenvalues with PCA model

2015-11-09 Thread Christos Iraklis Tsatsoulis (JIRA)

[ 
https://issues.apache.org/jira/browse/SPARK-11530?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=14996533#comment-14996533
 ] 

Christos Iraklis Tsatsoulis edited comment on SPARK-11530 at 11/9/15 1:37 PM:
--

I edited it to target both; there are PCA.scala scripts for both 
ML & MLLib, but since I am using it via PySpark, where it is available only via 
ML, I initially omitted MLlib


was (Author: ctsats):
I edited it to target both; there are ``PCA.scala`` scripts for both ML & 
MLLib, but since I am using it via PySpark, where it is available only via ML, 
I initially omitted MLlib

> Return eigenvalues with PCA model
> -
>
> Key: SPARK-11530
> URL: https://issues.apache.org/jira/browse/SPARK-11530
> Project: Spark
>  Issue Type: Improvement
>  Components: ML, MLlib
>Affects Versions: 1.5.1
>Reporter: Christos Iraklis Tsatsoulis
>
> For data scientists & statisticians, PCA is of little use if they cannot 
> estimate the _proportion of variance explained_ by selecting _k_ principal 
> components (see here for the math details: 
> https://inst.eecs.berkeley.edu/~ee127a/book/login/l_sym_pca.html , section 
> 'Explained variance'). To estimate this, one only needs the eigenvalues of 
> the covariance matrix.
> Although the eigenvalues are currently computed during PCA model fitting, 
> they are not _returned_; hence, as it stands now, PCA in Spark ML is of 
> extremely limited practical use.
> For details, see these SO questions
> http://stackoverflow.com/questions/33428589/pyspark-and-pca-how-can-i-extract-the-eigenvectors-of-this-pca-how-can-i-calcu/
>  (pyspark)
> http://stackoverflow.com/questions/33559599/spark-pca-top-components (Scala)
> and this blog post http://www.nodalpoint.com/pca-in-spark-1-5/



--
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