Class MultilayerPerceptronClassificationModel

All Implemented Interfaces:
Serializable, org.apache.spark.internal.Logging, org.apache.spark.ml.classification.ClassifierParams, org.apache.spark.ml.classification.MultilayerPerceptronParams, org.apache.spark.ml.classification.ProbabilisticClassifierParams, Params, HasBlockSize, HasFeaturesCol, HasLabelCol, HasMaxIter, HasPredictionCol, HasProbabilityCol, HasRawPredictionCol, HasSeed, HasSolver, HasStepSize, HasThresholds, HasTol, org.apache.spark.ml.PredictorParams, org.apache.spark.ml.util.HasTrainingSummary<MultilayerPerceptronClassificationTrainingSummary>, Identifiable, MLWritable

public class MultilayerPerceptronClassificationModel extends ProbabilisticClassificationModel<Vector,MultilayerPerceptronClassificationModel> implements org.apache.spark.ml.classification.MultilayerPerceptronParams, Serializable, MLWritable, org.apache.spark.ml.util.HasTrainingSummary<MultilayerPerceptronClassificationTrainingSummary>
Classification model based on the Multilayer Perceptron. Each layer has sigmoid activation function, output layer has softmax.

param: uid uid param: weights the weights of layers

See Also: