Skip to content

Commit e856036

Browse files
author
DB Tsai
committed
scala doc
1 parent 596e96c commit e856036

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mllib/src/main/scala/org/apache/spark/ml/classification/LogisticRegression.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class LogisticRegression(override val uid: String)
103103
* The coefficients of models will be always returned on the original scale,
104104
* so it will be transparent for users. Note that with/without standardization,
105105
* the models should be always converged to the same solution when no regularization
106-
* is applied.
106+
* is applied. In R's GLMNET package, the default behavior is true as well.
107107
* Default is true.
108108
* @group setParam
109109
* */

mllib/src/main/scala/org/apache/spark/ml/regression/LinearRegression.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class LinearRegression(override val uid: String)
8989
* The coefficients of models will be always returned on the original scale,
9090
* so it will be transparent for users. Note that with/without standardization,
9191
* the models should be always converged to the same solution when no regularization
92-
* is applied.
92+
* is applied. In R's GLMNET package, the default behavior is true as well.
9393
* Default is true.
9494
* @group setParam
9595
*/

0 commit comments

Comments
 (0)