[ https://issues.apache.org/jira/browse/SPARK-15398?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Xiangrui Meng resolved SPARK-15398.
-----------------------------------
Resolution: Fixed
Fix Version/s: 2.0.0
Issue resolved by pull request 13190
[https://github.com/apache/spark/pull/13190]
> Update the warning message to recommend ML usage
> ------------------------------------------------
>
> Key: SPARK-15398
> URL: https://issues.apache.org/jira/browse/SPARK-15398
> Project: Spark
> Issue Type: Improvement
> Components: ML
> Reporter: zhengruifeng
> Priority: Minor
> Fix For: 2.0.0
>
>
> update the warning message in example, and recommend user to use ML instead of MLlib
> from
> {code}
> def showWarning() {
> System.err.println(
> """WARN: This is a naive implementation of Logistic Regression and is given as
an example!
> |Please use either org.apache.spark.mllib.classification.LogisticRegressionWithSGD
or
> |org.apache.spark.mllib.classification.LogisticRegressionWithLBFGS
> |for more conventional use.
> """.stripMargin)
> }
> {code}
> to
> {code}
> def showWarning() {
> System.err.println(
> """WARN: This is a naive implementation of Logistic Regression and is given as
an example!
> |Please use org.apache.spark.ml.classification.LogisticRegression
> |for more conventional use.
> """.stripMargin)
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org
|