Java weka.classifiers.functions MultilayerPerceptron fields, constructors, methods, implement or subclass

Example usage for Java weka.classifiers.functions MultilayerPerceptron fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for weka.classifiers.functions MultilayerPerceptron.

The text is from its open source code.

Constructor

MultilayerPerceptron()
The constructor.

Method

voidbuildClassifier(Instances i)
Call this function to build and train a neural network for the training data provided.
doubleclassifyInstance(Instance instance)
Classifies the given test instance.
voidmain(String[] argv)
Main method for testing this class.
voidsetAutoBuild(boolean a)
This will set whether the network is automatically built or if it is left up to the user.
voidsetHiddenLayers(String h)
This will set what the hidden layers are made up of when auto build is enabled.
voidsetLearningRate(double l)
The learning rate can be set using this command.
voidsetMomentum(double m)
The momentum can be set using this command.
voidsetOptions(String[] options)
Parses a given list of options.
voidsetSeed(int l)
This seeds the random number generator, that is used when a random number is needed for the network.
voidsetTrainingTime(int n)
Set the number of training epochs to perform.
StringtoString()