Package | Description |
---|---|
org.neuroph.core |
Provides base classes and basic building components for neural networks.
|
org.neuroph.nnet.comp |
Provides components for the specific neural network models.
|
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.
|
Modifier and Type | Field and Description |
---|---|
protected Weight |
Connection.weight
Weight for this connection
|
Modifier and Type | Method and Description |
---|---|
Weight |
Connection.getWeight()
Returns weight for this connection
|
Weight[] |
Neuron.getWeights()
Returns weights vector of input connections
|
Modifier and Type | Method and Description |
---|---|
void |
Connection.setWeight(Weight weight)
Set the weight of the connection.
|
Constructor and Description |
---|
Connection(Neuron fromNeuron,
Neuron toNeuron,
Weight weight)
Creates a new connection to specified neuron with specified weight object
|
Modifier and Type | Method and Description |
---|---|
Weight[][] |
Kernel.getWeights() |
Modifier and Type | Method and Description |
---|---|
void |
Kernel.setWeights(Weight[][] weights) |
Modifier and Type | Method and Description |
---|---|
protected void |
ResilientPropagation.resillientWeightUpdate(Weight weight)
Weight update by done by ResilientPropagation learning rule
Executed at the end of epoch (in batch mode)
|
Modifier and Type | Method and Description |
---|---|
static void |
ConnectionFactory.createConnection(Neuron fromNeuron,
Neuron toNeuron,
Weight weight)
Creates connection between two specified neurons
|
Copyright © 2019 Neuroph Project. All rights reserved.