Class BinaryRandomForestClassificationSummaryImpl

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

public class BinaryRandomForestClassificationSummaryImpl extends RandomForestClassificationSummaryImpl implements BinaryRandomForestClassificationSummary
Binary RandomForestClassification for a given model.

param: predictions dataframe output by the model's transform method. param: scoreCol field in "predictions" which gives the prediction of each class as a vector. 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: