类 MultilayerPerceptron

java.lang.Object
weka.classifiers.Classifier
weka.classifiers.functions.MultilayerPerceptron
所有已实现的接口:
Serializable, Cloneable, CapabilitiesHandler, OptionHandler, Randomizable, RevisionHandler, WeightedInstancesHandler

public class MultilayerPerceptron extends Classifier implements OptionHandler, WeightedInstancesHandler, Randomizable
A Classifier that uses backpropagation to classify instances.
This network can be built by hand, created by an algorithm or both. The network can also be monitored and modified during training time. The nodes in this network are all sigmoid (except for when the class is numeric in which case the the output nodes become unthresholded linear units).

Valid options are:

 -L <learning rate>
  Learning Rate for the backpropagation algorithm.
  (Value should be between 0 - 1, Default = 0.3).
 -M <momentum>
  Momentum Rate for the backpropagation algorithm.
  (Value should be between 0 - 1, Default = 0.2).
 -N <number of epochs>
  Number of epochs to train through.
  (Default = 500).
 -V <percentage size of validation set>
  Percentage size of validation set to use to terminate
  training (if this is non zero it can pre-empt num of epochs.
  (Value should be between 0 - 100, Default = 0).
 -S <seed>
  The value used to seed the random number generator
  (Value should be >= 0 and and a long, Default = 0).
 -E <threshold for number of consequetive errors>
  The consequetive number of errors allowed for validation
  testing before the netwrok terminates.
  (Value should be > 0, Default = 20).
 -G
  GUI will be opened.
  (Use this to bring up a GUI).
 -A
  Autocreation of the network connections will NOT be done.
  (This will be ignored if -G is NOT set)
 -B
  A NominalToBinary filter will NOT automatically be used.
  (Set this to not use a NominalToBinary filter).
 -H <comma seperated numbers for nodes on each layer>
  The hidden layers to be created for the network.
  (Value should be a list of comma separated Natural 
  numbers or the letters 'a' = (attribs + classes) / 2, 
  'i' = attribs, 'o' = classes, 't' = attribs .+ classes)
  for wildcard values, Default = a).
 -C
  Normalizing a numeric class will NOT be done.
  (Set this to not normalize the class if it's numeric).
 -I
  Normalizing the attributes will NOT be done.
  (Set this to not normalize the attributes).
 -R
  Reseting the network will NOT be allowed.
  (Set this to not allow the network to reset).
 -D
  Learning rate decay will occur.
  (Set this to cause the learning rate to decay).
版本:
$Revision: 10073 $
作者:
Malcolm Ware (mfw4@cs.waikato.ac.nz)
另请参阅:
  • 构造器详细资料

    • MultilayerPerceptron

      public MultilayerPerceptron()
      The constructor.
  • 方法详细资料

    • main

      public static void main(String[] argv)
      Main method for testing this class.
      参数:
      argv - should contain command line options (see setOptions)
    • setDecay

      public void setDecay(boolean d)
      参数:
      d - True if the learning rate should decay.
    • getDecay

      public boolean getDecay()
      返回:
      the flag for having the learning rate decay.
    • setReset

      public void setReset(boolean r)
      This sets the network up to be able to reset itself with the current settings and the learning rate at half of what it is currently. This will only happen if the network creates NaN or infinite errors. Also this will continue to happen until the network is trained properly. The learning rate will also get set back to it's original value at the end of this. This can only be set to true if the GUI is not brought up.
      参数:
      r - True if the network should restart with it's current options and set the learning rate to half what it currently is.
    • getReset

      public boolean getReset()
      返回:
      The flag for reseting the network.
    • setNormalizeNumericClass

      public void setNormalizeNumericClass(boolean c)
      参数:
      c - True if the class should be normalized (the class will only ever be normalized if it is numeric). (Normalization puts the range between -1 - 1).
    • getNormalizeNumericClass

      public boolean getNormalizeNumericClass()
      返回:
      The flag for normalizing a numeric class.
    • setNormalizeAttributes

      public void setNormalizeAttributes(boolean a)
      参数:
      a - True if the attributes should be normalized (even nominal attributes will get normalized here) (range goes between -1 - 1).
    • getNormalizeAttributes

      public boolean getNormalizeAttributes()
      返回:
      The flag for normalizing attributes.
    • setNominalToBinaryFilter

      public void setNominalToBinaryFilter(boolean f)
      参数:
      f - True if a nominalToBinary filter should be used on the data.
    • getNominalToBinaryFilter

      public boolean getNominalToBinaryFilter()
      返回:
      The flag for nominal to binary filter use.
    • setSeed

      public void setSeed(int l)
      This seeds the random number generator, that is used when a random number is needed for the network.
      指定者:
      setSeed 在接口中 Randomizable
      参数:
      l - The seed.
    • getSeed

      public int getSeed()
      从接口复制的说明: Randomizable
      Gets the seed for the random number generations
      指定者:
      getSeed 在接口中 Randomizable
      返回:
      The seed for the random number generator.
    • setValidationThreshold

      public void setValidationThreshold(int t)
      This sets the threshold to use for when validation testing is being done. It works by ending testing once the error on the validation set has consecutively increased a certain number of times.
      参数:
      t - The threshold to use for this.
    • getValidationThreshold

      public int getValidationThreshold()
      返回:
      The threshold used for validation testing.
    • setLearningRate

      public void setLearningRate(double l)
      The learning rate can be set using this command. NOTE That this is a static variable so it affect all networks that are running. Must be greater than 0 and no more than 1.
      参数:
      l - The New learning rate.
    • getLearningRate

      public double getLearningRate()
      返回:
      The learning rate for the nodes.
    • setMomentum

      public void setMomentum(double m)
      The momentum can be set using this command. THE same conditions apply to this as to the learning rate.
      参数:
      m - The new Momentum.
    • getMomentum

      public double getMomentum()
      返回:
      The momentum for the nodes.
    • setAutoBuild

      public void setAutoBuild(boolean a)
      This will set whether the network is automatically built or if it is left up to the user. (there is nothing to stop a user from altering an autobuilt network however).
      参数:
      a - True if the network should be auto built.
    • getAutoBuild

      public boolean getAutoBuild()
      返回:
      The auto build state.
    • setHiddenLayers

      public void setHiddenLayers(String h)
      This will set what the hidden layers are made up of when auto build is enabled. Note to have no hidden units, just put a single 0, Any more 0's will indicate that the string is badly formed and make it unaccepted. Negative numbers, and floats will do the same. There are also some wildcards. These are 'a' = (number of attributes + number of classes) / 2, 'i' = number of attributes, 'o' = number of classes, and 't' = number of attributes + number of classes.
      参数:
      h - A string with a comma seperated list of numbers. Each number is the number of nodes to be on a hidden layer.
    • getHiddenLayers

      public String getHiddenLayers()
      返回:
      A string representing the hidden layers, each number is the number of nodes on a hidden layer.
    • setGUI

      public void setGUI(boolean a)
      This will set whether A GUI is brought up to allow interaction by the user with the neural network during training.
      参数:
      a - True if gui should be created.
    • getGUI

      public boolean getGUI()
      返回:
      The true if should show gui.
    • setValidationSetSize

      public void setValidationSetSize(int a)
      This will set the size of the validation set.
      参数:
      a - The size of the validation set, as a percentage of the whole.
    • getValidationSetSize

      public int getValidationSetSize()
      返回:
      The percentage size of the validation set.
    • setTrainingTime

      public void setTrainingTime(int n)
      Set the number of training epochs to perform. Must be greater than 0.
      参数:
      n - The number of epochs to train through.
    • getTrainingTime

      public int getTrainingTime()
      返回:
      The number of epochs to train through.
    • blocker

      public void blocker(boolean tf)
      A function used to stop the code that called buildclassifier from continuing on before the user has finished the decision tree.
      参数:
      tf - True to stop the thread, False to release the thread that is waiting there (if one).
    • getCapabilities

      public Capabilities getCapabilities()
      Returns default capabilities of the classifier.
      指定者:
      getCapabilities 在接口中 CapabilitiesHandler
      覆盖:
      getCapabilities 在类中 Classifier
      返回:
      the capabilities of this classifier
      另请参阅:
    • buildClassifier

      public void buildClassifier(Instances i) throws Exception
      Call this function to build and train a neural network for the training data provided.
      指定者:
      buildClassifier 在类中 Classifier
      参数:
      i - The training data.
      抛出:
      Exception - if can't build classification properly.
    • distributionForInstance

      public double[] distributionForInstance(Instance i) throws Exception
      Call this function to predict the class of an instance once a classification model has been built with the buildClassifier call.
      覆盖:
      distributionForInstance 在类中 Classifier
      参数:
      i - The instance to classify.
      返回:
      A double array filled with the probabilities of each class type.
      抛出:
      Exception - if can't classify instance.
    • listOptions

      public Enumeration listOptions()
      Returns an enumeration describing the available options.
      指定者:
      listOptions 在接口中 OptionHandler
      覆盖:
      listOptions 在类中 Classifier
      返回:
      an enumeration of all the available options.
    • setOptions

      public void setOptions(String[] options) throws Exception
      Parses a given list of options.

      Valid options are:

       -L <learning rate>
        Learning Rate for the backpropagation algorithm.
        (Value should be between 0 - 1, Default = 0.3).
       -M <momentum>
        Momentum Rate for the backpropagation algorithm.
        (Value should be between 0 - 1, Default = 0.2).
       -N <number of epochs>
        Number of epochs to train through.
        (Default = 500).
       -V <percentage size of validation set>
        Percentage size of validation set to use to terminate
        training (if this is non zero it can pre-empt num of epochs.
        (Value should be between 0 - 100, Default = 0).
       -S <seed>
        The value used to seed the random number generator
        (Value should be >= 0 and and a long, Default = 0).
       -E <threshold for number of consequetive errors>
        The consequetive number of errors allowed for validation
        testing before the netwrok terminates.
        (Value should be > 0, Default = 20).
       -G
        GUI will be opened.
        (Use this to bring up a GUI).
       -A
        Autocreation of the network connections will NOT be done.
        (This will be ignored if -G is NOT set)
       -B
        A NominalToBinary filter will NOT automatically be used.
        (Set this to not use a NominalToBinary filter).
       -H <comma seperated numbers for nodes on each layer>
        The hidden layers to be created for the network.
        (Value should be a list of comma separated Natural 
        numbers or the letters 'a' = (attribs + classes) / 2, 
        'i' = attribs, 'o' = classes, 't' = attribs .+ classes)
        for wildcard values, Default = a).
       -C
        Normalizing a numeric class will NOT be done.
        (Set this to not normalize the class if it's numeric).
       -I
        Normalizing the attributes will NOT be done.
        (Set this to not normalize the attributes).
       -R
        Reseting the network will NOT be allowed.
        (Set this to not allow the network to reset).
       -D
        Learning rate decay will occur.
        (Set this to cause the learning rate to decay).
      指定者:
      setOptions 在接口中 OptionHandler
      覆盖:
      setOptions 在类中 Classifier
      参数:
      options - the list of options as an array of strings
      抛出:
      Exception - if an option is not supported
    • getOptions

      public String[] getOptions()
      Gets the current settings of NeuralNet.
      指定者:
      getOptions 在接口中 OptionHandler
      覆盖:
      getOptions 在类中 Classifier
      返回:
      an array of strings suitable for passing to setOptions()
    • toString

      public String toString()
      覆盖:
      toString 在类中 Object
      返回:
      string describing the model.
    • globalInfo

      public String globalInfo()
      This will return a string describing the classifier.
      返回:
      The string.
    • learningRateTipText

      public String learningRateTipText()
      返回:
      a string to describe the learning rate option.
    • momentumTipText

      public String momentumTipText()
      返回:
      a string to describe the momentum option.
    • autoBuildTipText

      public String autoBuildTipText()
      返回:
      a string to describe the AutoBuild option.
    • seedTipText

      public String seedTipText()
      返回:
      a string to describe the random seed option.
    • validationThresholdTipText

      public String validationThresholdTipText()
      返回:
      a string to describe the validation threshold option.
    • GUITipText

      public String GUITipText()
      返回:
      a string to describe the GUI option.
    • validationSetSizeTipText

      public String validationSetSizeTipText()
      返回:
      a string to describe the validation size option.
    • trainingTimeTipText

      public String trainingTimeTipText()
      返回:
      a string to describe the learning rate option.
    • nominalToBinaryFilterTipText

      public String nominalToBinaryFilterTipText()
      返回:
      a string to describe the nominal to binary option.
    • hiddenLayersTipText

      public String hiddenLayersTipText()
      返回:
      a string to describe the hidden layers in the network.
    • normalizeNumericClassTipText

      public String normalizeNumericClassTipText()
      返回:
      a string to describe the nominal to binary option.
    • normalizeAttributesTipText

      public String normalizeAttributesTipText()
      返回:
      a string to describe the nominal to binary option.
    • resetTipText

      public String resetTipText()
      返回:
      a string to describe the Reset option.
    • decayTipText

      public String decayTipText()
      返回:
      a string to describe the Decay option.
    • getRevision

      public String getRevision()
      Returns the revision string.
      指定者:
      getRevision 在接口中 RevisionHandler
      覆盖:
      getRevision 在类中 Classifier
      返回:
      the revision