|
Neural Network Software | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Interface representing the minimal functionality of a node in a neural network.
| Method Summary | |
int |
addInputConnection(WeightedConnection inputConnection)
Add an input connection to this node. |
int |
addOutputConnection(WeightedConnection outputConnection)
Add an output connection to this node. |
void |
clearInputConnections()
Remove all input connections from this node. |
void |
clearOutputConnections()
Remove all output connections from this node. |
WeightedConnection |
getInputConnection(int index)
Return a specific input connection to this node. |
java.util.List |
getInputConnections()
Returns a List of WeightedConnections which are the input connections
to this node. |
int |
getNumberInputConnections()
Returns the number of input connections to this node. |
int |
getNumberOutputConnections()
Returns the number of output connections from this node. |
double |
getOutput()
Return the output of this node. |
WeightedConnection |
getOutputConnection(int index)
Return a specific output connection to this node. |
java.util.List |
getOutputConnections()
Returns a List of WeightedConnections which are the output connections
to this node. |
| Method Detail |
public int getNumberInputConnections()
public void clearInputConnections()
public int addInputConnection(WeightedConnection inputConnection)
inputConnection - a WeightedConnection that will serve as an
additional input connection to this node
public WeightedConnection getInputConnection(int index)
index - the ordinal number of the input connection, based on the order in which connections were
to this node
WeightedConnection representing the connection requestedpublic java.util.List getInputConnections()
WeightedConnections which are the input connections
to this node.
public int getNumberOutputConnections()
public void clearOutputConnections()
public int addOutputConnection(WeightedConnection outputConnection)
outputConnection - a WeightedConnection that will serve as an
additional output connection to this node
public WeightedConnection getOutputConnection(int index)
index - the ordinal number of the output connection, based on the order in which connections were
to this node
WeightedConnection representing the connection requestedpublic java.util.List getOutputConnections()
WeightedConnections which are the output connections
to this node.
public double getOutput()
|
PracticalStudies.com | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||