[
https://issues.apache.org/jira/browse/SPARK-15398?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Apache Spark reassigned SPARK-15398:
------------------------------------
Assignee: Apache Spark
> 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
> Assignee: Apache Spark
> Priority: Minor
>
> 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: [email protected]
For additional commands, e-mail: [email protected]