Class RandomForestClassificationSummaryImpl

Object
org.apache.spark.ml.classification.RandomForestClassificationSummaryImpl
All Implemented Interfaces:
Serializable, ClassificationSummary, RandomForestClassificationSummary, scala.Serializable
Direct Known Subclasses:
BinaryRandomForestClassificationSummaryImpl, RandomForestClassificationTrainingSummaryImpl

public class RandomForestClassificationSummaryImpl extends Object implements RandomForestClassificationSummary
Multiclass RandomForestClassification results for a given model.

param: predictions dataframe output by the model's transform method. param: predictionCol field in "predictions" which gives the prediction for a data instance as a double. param: labelCol field in "predictions" which gives the true label of each instance. param: weightCol field in "predictions" which gives the weight of each instance.

See Also: