[
https://issues.apache.org/jira/browse/SPARK-15398?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15290532#comment-15290532
]
Apache Spark commented on SPARK-15398:
--------------------------------------
User 'zhengruifeng' has created a pull request for this issue:
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
>
> 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]