Github user yanboliang commented on a diff in the pull request:
https://github.com/apache/spark/pull/8836#discussion_r40059910
--- Diff:
mllib/src/main/scala/org/apache/spark/ml/regression/AFTSurvivalRegression.scala
---
@@ -90,6 +108,12 @@ private[regression] trait AFTSurvivalRegressionParams
extends Params
SchemaUtils.checkColumnType(schema, $(censorCol), DoubleType)
SchemaUtils.checkColumnType(schema, $(labelCol), DoubleType)
}
+ if (hasQuantileProbabilities && hasQuantilesCol) {
+ SchemaUtils.appendColumn(schema, $(quantilesCol), new VectorUDT)
+ } else if (hasQuantileProbabilities || hasQuantilesCol) {
+ logWarning("The output will not include quantiles column. " +
+ "If you want to include, please set both quantileProbabilities and
quantilesCol.")
+ }
--- End diff --
@rotationsymmetry Thanks for your comments! I think we should keep the same
tradition with R which have a default prediction and some other predictions
cloud be enabled by parameter.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]