Uses of Interface
com.imsl.datamining.neural.Trainer
Packages that use Trainer
-
Uses of Trainer in com.imsl.datamining.neural
Classes in com.imsl.datamining.neural that implement TrainerModifier and TypeClassDescriptionclassPerforms two-stage training using randomly selected training patterns in stage I.classTrains aFeedForwardNetworkusing a Levenberg-Marquardt algorithm for minimizing a sum of squares error.classTrains a network using the quasi-Newton method,MinUnconMultiVar.Methods in com.imsl.datamining.neural that return TrainerModifier and TypeMethodDescriptionprotected TrainerEpochTrainer.getStage1Trainer()Returns the stage 1 trainer.protected TrainerEpochTrainer.getStage2Trainer()Returns the stage 1 trainer.Methods in com.imsl.datamining.neural with parameters of type TrainerModifier and TypeMethodDescriptionvoidTrains the classification neural network using supplied trainer and patterns.voidTrains the classification neural network using supplied training patterns.Constructors in com.imsl.datamining.neural with parameters of type TrainerModifierConstructorDescriptionEpochTrainer(Trainer stage1Trainer) Creates a single stageEpochTrainer.EpochTrainer(Trainer stage1Trainer, Trainer stage2Trainer) Creates a two-stageEpochTrainer.