Neuroph

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.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
 

Methods in org.neuroph.core that return types with arguments of type Weight
 java.util.Vector<Weight> Neuron.getWeightsVector()
          Returns weights vector of input connections
 

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

Uses of Weight in org.neuroph.util
 

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


Neuroph