Returning back LabeledPoint into public, in referece to the discussion in : https://github.com/dmlc/xgboost/pull/2532#discussion_r137172759 (#2677)

This commit is contained in:
Mahmoud Rawas 2017-09-11 13:45:43 +10:00 committed by Nan Zhu
parent 9c85903f0b
commit a7ce4d2462

View File

@ -17,7 +17,7 @@
package ml.dmlc.xgboost4j package ml.dmlc.xgboost4j
/** Labeled training data point. */ /** Labeled training data point. */
private[xgboost4j] case class LabeledPoint( case class LabeledPoint(
/** Label of this point. */ /** Label of this point. */
label: Float, label: Float,
/** Feature indices of this point or `null` if the data is dense. */ /** Feature indices of this point or `null` if the data is dense. */