[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.
This commit is contained in:
wm624@hotmail.com 2016-10-07 18:00:26 -07:00 committed by Reynold Xin
parent 24850c9415
commit 471690f90f

View file

@ -78,7 +78,6 @@ private[classification] trait LogisticRegressionParams extends ProbabilisticClas
/** /**
* Param for the name of family which is a description of the label distribution * Param for the name of family which is a description of the label distribution
* to be used in the model. * to be used in the model.
* Supported options: "auto", "multinomial", "binomial".
* Supported options: * Supported options:
* - "auto": Automatically select the family based on the number of classes: * - "auto": Automatically select the family based on the number of classes:
* If numClasses == 1 || numClasses == 2, set to "binomial". * If numClasses == 1 || numClasses == 2, set to "binomial".