|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Connection | |
|---|---|
| org.neuroph.core | Provides base classes and basic building components for neural networks. |
| org.neuroph.core.input | Provides common neuron input functions |
| org.neuroph.nnet.comp | Provides components for the specific neural network models. |
| org.neuroph.nnet.comp.neuron | Provides various specific neuron types |
| Uses of Connection in org.neuroph.core |
|---|
| Fields in org.neuroph.core declared as Connection | |
|---|---|
protected Connection[] |
Neuron.inputConnections
Array of neuron's input connections (connections to this neuron) |
protected Connection[] |
Neuron.outConnections
Array of neuron's output connections (connections from this to other neurons) |
| Methods in org.neuroph.core that return Connection | |
|---|---|
Connection |
Neuron.getConnectionFrom(Neuron fromNeuron)
Gets input connection from the specified neuron * @param fromNeuron neuron connected to this neuron as input |
Connection[] |
Neuron.getInputConnections()
Returns input connections for this neuron |
Connection[] |
Neuron.getOutConnections()
Returns output connections from this neuron |
| Methods in org.neuroph.core with parameters of type Connection | |
|---|---|
void |
Neuron.addInputConnection(Connection connection)
Adds the specified input connection |
protected void |
Neuron.addOutputConnection(Connection connection)
Adds the specified output connection |
protected void |
Neuron.removeInputConnection(Connection conn)
|
protected void |
Neuron.removeOutputConnection(Connection conn)
|
| Uses of Connection in org.neuroph.core.input |
|---|
| Methods in org.neuroph.core.input with parameters of type Connection | |
|---|---|
double |
WeightedSum.getOutput(Connection[] inputConnections)
|
double |
SumSqr.getOutput(Connection[] inputConnections)
|
double |
Sum.getOutput(Connection[] inputConnections)
|
double |
Product.getOutput(Connection[] inputConnections)
|
double |
Or.getOutput(Connection[] inputConnections)
|
double |
Min.getOutput(Connection[] inputConnections)
|
double |
Max.getOutput(Connection[] inputConnections)
|
abstract double |
InputFunction.getOutput(Connection[] inputConnections)
Returns ouput value of this input function for the given neuron inputs |
double |
Difference.getOutput(Connection[] inputConnections)
|
double |
And.getOutput(Connection[] inputConnections)
|
| Uses of Connection in org.neuroph.nnet.comp |
|---|
| Subclasses of Connection in org.neuroph.nnet.comp | |
|---|---|
class |
DelayedConnection
Represents the connection between neurons which can delay signal. |
| Uses of Connection in org.neuroph.nnet.comp.neuron |
|---|
| Methods in org.neuroph.nnet.comp.neuron that return Connection | |
|---|---|
Connection[] |
CompetitiveNeuron.getConnectionsFromOtherLayers()
Returns collection of connections from other layers |
| Methods in org.neuroph.nnet.comp.neuron with parameters of type Connection | |
|---|---|
void |
CompetitiveNeuron.addInputConnection(Connection connection)
Adds input connection for this competitive neuron |
void |
BiasNeuron.addInputConnection(Connection connection)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||