Package | Description |
---|---|
com.imsl.datamining.neural |
Neural networks.
|
Modifier and Type | Class and Description |
---|---|
class |
EpochTrainer
Performs two-stage training using randomly selected training patterns in stage I.
|
class |
LeastSquaresTrainer
Trains a
FeedForwardNetwork using a Levenberg-Marquardt
algorithm for minimizing a sum of squares error. |
class |
QuasiNewtonTrainer
Trains a network using the quasi-Newton method,
MinUnconMultiVar . |
Modifier and Type | Method and Description |
---|---|
protected Trainer |
EpochTrainer.getStage1Trainer()
Returns the stage 1 trainer.
|
protected Trainer |
EpochTrainer.getStage2Trainer()
Returns the stage 1 trainer.
|
Modifier and Type | Method and Description |
---|---|
void |
BinaryClassification.train(Trainer trainer,
double[][] xData,
int[] yData)
Trains the classification neural network using supplied trainer and patterns.
|
void |
MultiClassification.train(Trainer trainer,
double[][] xData,
int[] yData)
Trains the classification neural network using supplied training patterns.
|
Constructor and Description |
---|
EpochTrainer(Trainer stage1Trainer)
Creates a single stage
EpochTrainer . |
EpochTrainer(Trainer stage1Trainer,
Trainer stage2Trainer)
Creates a two-stage
EpochTrainer . |
Copyright © 2020 Rogue Wave Software. All rights reserved.