[GitHub] spark pull request #17706: [SPARK-20423][ML] fix MLOR coeffs centering when ...

2017-04-21 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/spark/pull/17706


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] spark pull request #17706: [SPARK-20423][ML] fix MLOR coeffs centering when ...

2017-04-21 Thread sethah
Github user sethah commented on a diff in the pull request:

https://github.com/apache/spark/pull/17706#discussion_r112745372
  
--- Diff: 
mllib/src/test/scala/org/apache/spark/ml/classification/LogisticRegressionSuite.scala
 ---
@@ -1204,6 +1207,9 @@ class LogisticRegressionSuite
   -0.3180040, 0.9679074, -0.2252219, -0.4319914,
   0.2452411, -0.6046524, 0.1050710, 0.1180180), isTransposed = true)
 
+model1.coefficientMatrix.colIter.foreach(v => assert(v.toArray.sum ~== 
0.0 absTol eps))
--- End diff --

Before we tested that the coefficients have zero mean using:

`assert(model1.coefficientMatrix.toArray.sum ~== 0.0 absTol eps)`

We should replace every instance of that test with this new one.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] spark pull request #17706: [SPARK-20423][ML] fix MLOR coeffs centering when ...

2017-04-21 Thread dbtsai
Github user dbtsai commented on a diff in the pull request:

https://github.com/apache/spark/pull/17706#discussion_r112745777
  
--- Diff: 
mllib/src/test/scala/org/apache/spark/ml/classification/LogisticRegressionSuite.scala
 ---
@@ -1204,6 +1207,9 @@ class LogisticRegressionSuite
   -0.3180040, 0.9679074, -0.2252219, -0.4319914,
   0.2452411, -0.6046524, 0.1050710, 0.1180180), isTransposed = true)
 
+model1.coefficientMatrix.colIter.foreach(v => assert(v.toArray.sum ~== 
0.0 absTol eps))
--- End diff --

The fix looks right to me. Let's add a test that failing the original 
implementation.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] spark pull request #17706: [SPARK-20423][ML] fix MLOR coeffs centering when ...

2017-04-21 Thread sethah
Github user sethah commented on a diff in the pull request:

https://github.com/apache/spark/pull/17706#discussion_r112746518
  
--- Diff: 
mllib/src/test/scala/org/apache/spark/ml/classification/LogisticRegressionSuite.scala
 ---
@@ -1204,6 +1207,9 @@ class LogisticRegressionSuite
   -0.3180040, 0.9679074, -0.2252219, -0.4319914,
   0.2452411, -0.6046524, 0.1050710, 0.1180180), isTransposed = true)
 
+model1.coefficientMatrix.colIter.foreach(v => assert(v.toArray.sum ~== 
0.0 absTol eps))
--- End diff --

LBFGS seems to automatically find a solution where the coefficients for 
each feature index sum to zero, so I'm not sure of a way to find a case where 
this does not happen, TBH.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] spark pull request #17706: [SPARK-20423][ML] fix MLOR coeffs centering when ...

2017-04-21 Thread dbtsai
Github user dbtsai commented on a diff in the pull request:

https://github.com/apache/spark/pull/17706#discussion_r112747202
  
--- Diff: 
mllib/src/test/scala/org/apache/spark/ml/classification/LogisticRegressionSuite.scala
 ---
@@ -1204,6 +1207,9 @@ class LogisticRegressionSuite
   -0.3180040, 0.9679074, -0.2252219, -0.4319914,
   0.2452411, -0.6046524, 0.1050710, 0.1180180), isTransposed = true)
 
+model1.coefficientMatrix.colIter.foreach(v => assert(v.toArray.sum ~== 
0.0 absTol eps))
--- End diff --

Interesting. In theory, LBFGS can not see this since all LBFGS knows is the 
objective function. I think if we feed it with different solutions by justing a 
constant vector, LBFGS will stop as well. I think maybe it's related to how we 
setup the initial condition leading to the solution we get.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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