Uses of Class
simbad.piconode.core.node.NeuralNetwork

Packages that use NeuralNetwork
simbad.piconode.core.node   
 

Uses of NeuralNetwork in simbad.piconode.core.node
 

Subclasses of NeuralNetwork in simbad.piconode.core.node
 class FeedForwardNeuralNetwork
          This class implement a simple feed-forward neural network (no special properties)
 class FeedForwardNeuralNetworkForBackPropLearning
          This class implement a feed-forward neural network with learning capabilitie through back-propagation.
 class RecurrentNeuralNetwork
          This class implements the basis for a recurrent neural network (no special ability).
 class SelfOrganizingMap
          This class implement a simple 2D "Kohonen" Self Organizing Map.
 

Fields in simbad.piconode.core.node declared as NeuralNetwork
protected  NeuralNetwork NeuronalNode._network
           
 

Methods in simbad.piconode.core.node that return NeuralNetwork
 NeuralNetwork NeuronalNode.getNetwork()
           
 

Methods in simbad.piconode.core.node with parameters of type NeuralNetwork
protected  boolean RecurrentNeuron.checkNetwork(NeuralNetwork __network)
           
protected  boolean NeuronalNode.checkNetwork(NeuralNetwork __network)
          Compute output value of neuron according to input values and an activation function
 

Constructors in simbad.piconode.core.node with parameters of type NeuralNetwork
Neuron(NeuralNetwork __network)
           
Neuron(NeuralNetwork __network, ActivationFunction __activationFunctionObject)
           
Neuron(NeuralNetwork __network, ActivationFunction __activationFunctionObject, java.lang.String __name)
           
Neuron(NeuralNetwork __network, java.lang.String __name)
           
NeuronalNode(NeuralNetwork __network)
           
NeuronalNode(NeuralNetwork __network, java.lang.String __name)
           
RecurrentNeuron(NeuralNetwork __network)
           
RecurrentNeuron(NeuralNetwork __network, ActivationFunction __activationFunctionObject)
           
RecurrentNeuron(NeuralNetwork __network, ActivationFunction __activationFunctionObject, java.lang.String __name)
           
RecurrentNeuron(NeuralNetwork __network, java.lang.String __name)
           
SOMoutputNeuron(NeuralNetwork __network)
           
SOMoutputNeuron(NeuralNetwork __network, java.lang.String __name)