Class MultilayerPerceptronClassificationSummaryImpl
Object
org.apache.spark.ml.classification.MultilayerPerceptronClassificationSummaryImpl
- All Implemented Interfaces:
Serializable
,ClassificationSummary
,MultilayerPerceptronClassificationSummary
- Direct Known Subclasses:
MultilayerPerceptronClassificationTrainingSummaryImpl
public class MultilayerPerceptronClassificationSummaryImpl
extends Object
implements MultilayerPerceptronClassificationSummary
MultilayerPerceptronClassification 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:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionlabelCol()
Field in "predictions" which gives the true label of each instance (if available).Field in "predictions" which gives the prediction of each class.Dataframe output by the model'stransform
method.Field in "predictions" which gives the weight of each instance.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.spark.ml.classification.ClassificationSummary
accuracy, falsePositiveRateByLabel, fMeasureByLabel, fMeasureByLabel, labels, precisionByLabel, recallByLabel, truePositiveRateByLabel, weightedFalsePositiveRate, weightedFMeasure, weightedFMeasure, weightedPrecision, weightedRecall, weightedTruePositiveRate
-
Constructor Details
-
MultilayerPerceptronClassificationSummaryImpl
-
-
Method Details
-
labelCol
Description copied from interface:ClassificationSummary
Field in "predictions" which gives the true label of each instance (if available).- Specified by:
labelCol
in interfaceClassificationSummary
-
predictionCol
Description copied from interface:ClassificationSummary
Field in "predictions" which gives the prediction of each class.- Specified by:
predictionCol
in interfaceClassificationSummary
-
predictions
Description copied from interface:ClassificationSummary
Dataframe output by the model'stransform
method.- Specified by:
predictions
in interfaceClassificationSummary
- Returns:
- (undocumented)
-
weightCol
Description copied from interface:ClassificationSummary
Field in "predictions" which gives the weight of each instance.- Specified by:
weightCol
in interfaceClassificationSummary
-