The Encog Project

org.encog.neural.networks
Interface Train

All Known Implementing Classes:
Backpropagation, TrainHopfield

public interface Train

Train: Interface for all feedforward neural network training methods. There are currently three training methods define: Backpropagation Genetic Algorithms Simulated Annealing


Method Summary
 double getError()
          Get the current error percent from the training.
 Network getNetwork()
          Get the current best network from the training.
 void iteration()
          Perform one iteration of training.
 

Method Detail

getError

double getError()
Get the current error percent from the training.

Returns:
The current error.

getNetwork

Network getNetwork()
Get the current best network from the training.

Returns:
The best network.

iteration

void iteration()
Perform one iteration of training.


The Encog Project