| Package | Description |
|---|---|
| com.imsl.datamining.neural |
Neural networks.
|
| Modifier and Type | Class and Description |
|---|---|
class |
OutputPerceptron
A
Perceptron in the OutputLayer. |
| Modifier and Type | Method and Description |
|---|---|
Perceptron |
HiddenLayer.createPerceptron()
Creates a
Perceptron in this Layer of the
neural network. |
Perceptron |
OutputLayer.createPerceptron()
Creates a
Perceptron in this Layer of the
neural network. |
Perceptron |
HiddenLayer.createPerceptron(Activation activation,
double bias)
Creates a
Perceptron in this Layer with a
specified activation function and bias. |
Perceptron |
OutputLayer.createPerceptron(Activation activation,
double bias)
Creates a
Perceptron in this Layer with a
specified Activation and bias. |
Perceptron[] |
HiddenLayer.createPerceptrons(int n)
Creates a number of
Perceptrons in this Layer
of the neural network. |
Perceptron[] |
OutputLayer.createPerceptrons(int n)
Creates a number of
Perceptrons in this Layer
of the neural network. |
Perceptron[] |
HiddenLayer.createPerceptrons(int n,
Activation activation,
double bias)
Creates a number of
Perceptrons in this Layer
with the specified bias. |
Perceptron[] |
OutputLayer.createPerceptrons(int n,
Activation activation,
double bias)
Creates a number of
Perceptrons in this Layer
with specified activation and bias. |
abstract Perceptron[] |
Network.getPerceptrons()
Returns an array containing the
Perceptrons in the
Network. |
Perceptron[] |
FeedForwardNetwork.getPerceptrons()
Returns the
Perceptrons in this Network. |
Copyright © 2020 Rogue Wave Software. All rights reserved.