Class FMClassificationSummaryImpl

Object
org.apache.spark.ml.classification.FMClassificationSummaryImpl
All Implemented Interfaces:
Serializable, BinaryClassificationSummary, ClassificationSummary, FMClassificationSummary, scala.Serializable
Direct Known Subclasses:
FMClassificationTrainingSummaryImpl

public class FMClassificationSummaryImpl extends Object implements FMClassificationSummary
FMClassifier results for a given model.

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