Neuroph

Uses of Class
org.neuroph.util.NeuronProperties

Packages that use NeuronProperties
org.neuroph.core This package provides base classes and basic building components for neural networks. 
org.neuroph.nnet This package provides out-of-the-box neural networks 
org.neuroph.nnet.comp This package provides components for the specific neural network models. 
org.neuroph.util This package 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
 

Methods in org.neuroph.nnet with parameters of type NeuronProperties
private  void BAM.createNetwork(int inputNeuronsCount, int outputNeuronsCount, NeuronProperties neuronProperties)
          Creates BAM network architecture
private  void Hopfield.createNetwork(int neuronsNum, NeuronProperties neuronProperties)
          Creates Hopfield network architecture
private  void MultiLayerPerceptron.createNetwork(java.util.Vector<java.lang.Integer> neuronsInLayers, NeuronProperties neuronProperties)
          Creates MultiLayerPerceptron Network architecture - fully connected feedforward with specified number of neurons in each layer
 

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)
          Create 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