Neuroph

Uses of Class
org.neuroph.util.NeuronProperties

Packages that use NeuronProperties
org.neuroph.core Provides base classes and basic building components for neural networks. 
org.neuroph.nnet Provides out-of-the-box neural networks 
org.neuroph.nnet.comp Provides components for the specific neural network models. 
org.neuroph.util Provides various utility classes for creating neural networks, type codes, parsing vectors, etc. 
 

Uses of NeuronProperties in org.neuroph.core
 

Constructors in org.neuroph.core with parameters of type NeuronProperties
Layer(int neuronsNum, NeuronProperties neuronProperties)
          Creates an instance of Layer with the specified number of neurons with specified neuron properties
 

Uses of NeuronProperties in org.neuroph.nnet
 

Constructors in org.neuroph.nnet with parameters of type NeuronProperties
Hopfield(int neuronsNum, NeuronProperties neuronProperties)
          Creates new Hopfield network with specified neuron number and neuron properties
MultiLayerPerceptron(java.util.Vector<java.lang.Integer> neuronsInLayers, NeuronProperties neuronProperties)
          Creates new MultiLayerPerceptron net with specified number neurons in getLayersIterator
 

Uses of NeuronProperties in org.neuroph.nnet.comp
 

Constructors in org.neuroph.nnet.comp with parameters of type NeuronProperties
CompetitiveLayer(int neuronNum, NeuronProperties neuronProperties)
          Create an instance of CompetitiveLayer with the specified number of neurons with neuron properties
 

Uses of NeuronProperties in org.neuroph.util
 

Methods in org.neuroph.util with parameters of type NeuronProperties
static Layer LayerFactory.createLayer(int neuronsNum, NeuronProperties neuronProperties)
           
static Neuron NeuronFactory.createNeuron(NeuronProperties neuronProperties)
          Creates and returns neuron according to the given specification.
 

Method parameters in org.neuroph.util with type arguments of type NeuronProperties
static Layer LayerFactory.createLayer(java.util.Vector<NeuronProperties> neuronPropertiesVector)
           
 


Neuroph