Package | Description |
---|---|
com.imsl.datamining.neural |
Neural networks.
|
Modifier and Type | Class and Description |
---|---|
class |
FeedForwardNetwork
A representation of a feed forward neural network.
|
Modifier and Type | Method and Description |
---|---|
Network |
BinaryClassification.getNetwork()
Returns the network being used for classification.
|
Network |
MultiClassification.getNetwork()
Returns the network being used for classification.
|
Modifier and Type | Method and Description |
---|---|
void |
EpochTrainer.train(Network network,
double[][] xData,
double[][] yData)
Trains the neural network using supplied training patterns.
|
void |
QuasiNewtonTrainer.train(Network network,
double[][] xData,
double[][] yData)
Trains the neural network using supplied training patterns.
|
void |
LeastSquaresTrainer.train(Network network,
double[][] xData,
double[][] yData)
Trains the neural network using supplied training patterns.
|
void |
Trainer.train(Network network,
double[][] xData,
double[][] yData)
Trains the neural network using supplied training patterns.
|
Constructor and Description |
---|
BinaryClassification(Network network)
Creates a binary classifier.
|
MultiClassification(Network network)
Creates a classifier.
|
Copyright © 2020 Rogue Wave Software. All rights reserved.