Class MultilayerPerceptronClassificationSummaryImpl
Object
org.apache.spark.ml.classification.MultilayerPerceptronClassificationSummaryImpl
- All Implemented Interfaces:
- Serializable,- ClassificationSummary,- MultilayerPerceptronClassificationSummary,- Summary
- 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 SummaryConstructors
- 
Method SummaryModifier 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'stransformmethod.Field in "predictions" which gives the weight of each instance.Methods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.spark.ml.classification.ClassificationSummaryaccuracy, falsePositiveRateByLabel, fMeasureByLabel, fMeasureByLabel, labels, precisionByLabel, recallByLabel, truePositiveRateByLabel, weightedFalsePositiveRate, weightedFMeasure, weightedFMeasure, weightedPrecision, weightedRecall, weightedTruePositiveRate
- 
Constructor Details- 
MultilayerPerceptronClassificationSummaryImpl
 
- 
- 
Method Details- 
labelColDescription copied from interface:ClassificationSummaryField in "predictions" which gives the true label of each instance (if available).- Specified by:
- labelColin interface- ClassificationSummary
 
- 
predictionColDescription copied from interface:ClassificationSummaryField in "predictions" which gives the prediction of each class.- Specified by:
- predictionColin interface- ClassificationSummary
 
- 
predictionsDescription copied from interface:ClassificationSummaryDataframe output by the model'stransformmethod.- Specified by:
- predictionsin interface- ClassificationSummary
- Returns:
- (undocumented)
 
- 
weightColDescription copied from interface:ClassificationSummaryField in "predictions" which gives the weight of each instance.- Specified by:
- weightColin interface- ClassificationSummary
 
 
-