Uses of Class
org.neuroph.core.Weight

Packages that use Weight
org.neuroph.core Provides base classes and basic building components for neural networks. 
org.neuroph.nnet.learning Provides implementations of specific neural network learning algorithms. 
org.neuroph.util Provides various utility classes for creating neural networks, type codes, parsing vectors, etc. 
 

Uses of Weight in org.neuroph.core
 

Fields in org.neuroph.core declared as Weight
protected  Weight Connection.weight
          Weight for this connection
 

Methods in org.neuroph.core that return Weight
 Weight Connection.getWeight()
          Returns weight for this connection
 Weight[] Neuron.getWeights()
          Returns weights vector of input connections
 

Methods in org.neuroph.core with parameters of type Weight
 void Connection.setWeight(Weight weight)
          Set the weight of the connection.
 

Constructors in org.neuroph.core with parameters of type Weight
Connection(Neuron fromNeuron, Neuron toNeuron, Weight weight)
          Creates a new connection to specified neuron with specified weight object
 

Uses of Weight in org.neuroph.nnet.learning
 

Methods in org.neuroph.nnet.learning with parameters of type Weight
protected  void ResilientPropagation.resillientWeightUpdate(Weight weight)
          Weight update by done by ResilientPropagation learning rule Executed at the end of epoch (in batch mode)
 

Uses of Weight in org.neuroph.util
 

Methods in org.neuroph.util with parameters of type Weight
static void ConnectionFactory.createConnection(Neuron fromNeuron, Neuron toNeuron, Weight weight)
          Creates connection between two specified neurons
 



Copyright © 2012. All Rights Reserved.