0

Apache Spark 的文档(1.4.0) 承诺可以将随机森林(与决策树相同的承诺)扩展到多类分类设置。但是,我找不到使用 RandomForestModel API 的任何方法:

randomForestModel.predict

如果在 1.4.0 版本中真的有可能,您能否提供一个正确的方法来做到这一点?

4

1 回答 1

0

好吧,我在一个实验包(ml)中找到了它:org.apache.spark.ml.classification.RandomForestClassificationModel

并且应该使用转换而不是预测:

RandomForestClassificationModel.transform
于 2015-07-06T13:58:04.943 回答