Package | Description |
---|---|
com.imsl.datamining.neural |
Neural networks.
|
Modifier and Type | Class and Description |
---|---|
class |
InputNode
A
Node in the InputLayer . |
class |
OutputPerceptron
A
Perceptron in the OutputLayer . |
class |
Perceptron
A
Perceptron node in a neural network. |
Modifier and Type | Method and Description |
---|---|
Node |
Link.getFrom()
Returns the origination
Node for this Link . |
Node[] |
OutputLayer.getNodes()
Return the
Perceptron s in the OutputLayer . |
Node[] |
InputLayer.getNodes()
Return the
Perceptron s in the InputLayer . |
Node[] |
Layer.getNodes()
Return a list of the
Perceptron s in this
Layer . |
Node |
Link.getTo()
Returns the destination
Node for this Link . |
Modifier and Type | Method and Description |
---|---|
protected void |
Layer.addNode(Node node)
Associates a
Perceptron with this Layer . |
Link |
FeedForwardNetwork.findLink(Node from,
Node to)
Returns the
Link between two Node s. |
Link[] |
FeedForwardNetwork.findLinks(Node to)
Returns all of the
Link s to a given Node . |
Link |
FeedForwardNetwork.link(Node from,
Node to)
Establishes a
Link between two Node s. |
Link |
FeedForwardNetwork.link(Node from,
Node to,
double weight)
Establishes a
Link between two Node s with a
specified weight . |
protected void |
FeedForwardNetwork.validateLink(Node from,
Node to)
Checks that a
Link between two Node s is valid. |
Copyright © 2020 Rogue Wave Software. All rights reserved.