imatiach-msft commented on a change in pull request #25926: [SPARK-9612][ML]
Add instance weight support for GBTs
URL: https://github.com/apache/spark/pull/25926#discussion_r331842861
##########
File path:
mllib/src/main/scala/org/apache/spark/ml/tree/impl/GradientBoostedTrees.scala
##########
@@ -106,13 +106,13 @@ private[spark] object GradientBoostedTrees extends
Logging {
* corresponding to every sample.
*/
def computeInitialPredictionAndError(
- data: RDD[LabeledPoint],
+ data: RDD[Instance],
initTreeWeight: Double,
initTree: DecisionTreeRegressionModel,
loss: OldLoss): RDD[(Double, Double)] = {
- data.map { lp =>
- val pred = updatePrediction(lp.features, 0.0, initTree, initTreeWeight)
- val error = loss.computeError(pred, lp.label)
+ data.map { case Instance(label, _, features) =>
+ val pred = updatePrediction(features, 0.0, initTree, initTreeWeight)
+ val error = loss.computeError(pred, label)
Review comment:
oh, reading some of the other code this looks like unweighted error. That
seems very confusing. I think we could improve this code structure a bit more.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]