aboutsummaryrefslogtreecommitdiff
path: root/mllib/src/main
diff options
context:
space:
mode:
authorwm624@hotmail.com <wm624@hotmail.com>2016-10-07 18:00:26 -0700
committerReynold Xin <rxin@databricks.com>2016-10-07 18:00:26 -0700
commit471690f90f3bf29735faecd83d4671842c57b164 (patch)
tree544f0efb60bcbb7a1e2a76f106a7be4133f9b26b /mllib/src/main
parent24850c9415bfe18dc1edf66e5a7b4c554fff4f23 (diff)
downloadspark-471690f90f3bf29735faecd83d4671842c57b164.tar.gz
spark-471690f90f3bf29735faecd83d4671842c57b164.tar.bz2
spark-471690f90f3bf29735faecd83d4671842c57b164.zip
[MINOR][ML] remove redundant comment in LogisticRegression
## What changes were proposed in this pull request? While adding R wrapper for LogisticRegression, I found one extra comment. It is minor and I just remove it. ## How was this patch tested? Unit tests Author: wm624@hotmail.com <wm624@hotmail.com> Closes #15391 from wangmiao1981/mlordoc.
Diffstat (limited to 'mllib/src/main')
-rw-r--r--mllib/src/main/scala/org/apache/spark/ml/classification/LogisticRegression.scala1
1 files changed, 0 insertions, 1 deletions
diff --git a/mllib/src/main/scala/org/apache/spark/ml/classification/LogisticRegression.scala b/mllib/src/main/scala/org/apache/spark/ml/classification/LogisticRegression.scala
index 329961a25d..862a468745 100644
--- a/mllib/src/main/scala/org/apache/spark/ml/classification/LogisticRegression.scala
+++ b/mllib/src/main/scala/org/apache/spark/ml/classification/LogisticRegression.scala
@@ -78,7 +78,6 @@ private[classification] trait LogisticRegressionParams extends ProbabilisticClas
/**
* Param for the name of family which is a description of the label distribution
* to be used in the model.
- * Supported options: "auto", "multinomial", "binomial".
* Supported options:
* - "auto": Automatically select the family based on the number of classes:
* If numClasses == 1 || numClasses == 2, set to "binomial".