Neuroph

org.neuroph.nnet
Class SupervisedHebbianNetwork

java.lang.Object
  extended by java.util.Observable
      extended by org.neuroph.core.NeuralNetwork
          extended by org.neuroph.nnet.SupervisedHebbianNetwork
All Implemented Interfaces:
java.io.Serializable, java.lang.Runnable

public class SupervisedHebbianNetwork
extends NeuralNetwork

The SupervisedHebbianNetwork class that represents Hebbian neural network with supervised hebbian learning algorithm.

See Also:
Serialized Form

Field Summary
private static long serialVersionUID
          The class fingerprint that is set to indicate serialization compatibility with a previous version of the class.
 
Constructor Summary
SupervisedHebbianNetwork(int inputNeuronsNum, int outputNeuronsNum)
          Creates an instance of Supervised Hebbian Network net with specified number neurons in input and output layer
SupervisedHebbianNetwork(int inputNeuronsNum, int outputNeuronsNum, TransferFunctionType transferFunctionType)
          Creates an instance of Supervised Hebbian Network with specified number of neurons in input layer and output layer, and transfer function
 
Method Summary
private  void createNetwork(int inputNeuronsNum, int outputNeuronsNum, TransferFunctionType transferFunctionType)
          Creates an instance of Supervised Hebbian Network with specified number of neurons in input layer, output layer and transfer function
 
Methods inherited from class org.neuroph.core.NeuralNetwork
addLayer, addLayer, addPlugin, calculate, createConnection, getInputNeurons, getLayerAt, getLayers, getLayersCount, getLayersIterator, getLearningRule, getNetworkType, getOutput, getOutputNeurons, getPlugin, indexOf, learn, load, notifyChange, randomizeWeights, removeLayer, removeLayerAt, removePlugin, reset, run, save, setInput, setInputNeurons, setLearningRule, setNetworkType, setOutputNeurons, stopLearning, toString
 
Methods inherited from class java.util.Observable
addObserver, clearChanged, countObservers, deleteObserver, deleteObservers, hasChanged, notifyObservers, notifyObservers, setChanged
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
The class fingerprint that is set to indicate serialization compatibility with a previous version of the class.

See Also:
Constant Field Values
Constructor Detail

SupervisedHebbianNetwork

public SupervisedHebbianNetwork(int inputNeuronsNum,
                                int outputNeuronsNum)
Creates an instance of Supervised Hebbian Network net with specified number neurons in input and output layer

Parameters:
inputNeuronsNum - number of neurons in input layer
outputNeuronsNum - number of neurons in output layer

SupervisedHebbianNetwork

public SupervisedHebbianNetwork(int inputNeuronsNum,
                                int outputNeuronsNum,
                                TransferFunctionType transferFunctionType)
Creates an instance of Supervised Hebbian Network with specified number of neurons in input layer and output layer, and transfer function

Parameters:
inputNeuronsNum - number of neurons in input layer
outputNeuronsNum - number of neurons in output layer
transferFunctionType - transfer function type id
Method Detail

createNetwork

private void createNetwork(int inputNeuronsNum,
                           int outputNeuronsNum,
                           TransferFunctionType transferFunctionType)
Creates an instance of Supervised Hebbian Network with specified number of neurons in input layer, output layer and transfer function

Parameters:
inputNeuronsNum - number of neurons in input layer
outputNeuronsNum - number of neurons in output layer
transferFunctionType - transfer function type

Neuroph