001 package aima.learning.neural; 002 003 public interface NNTrainingScheme { 004 Vector processInput(FeedForwardNeuralNetwork network, Vector input); 005 006 void processError(FeedForwardNeuralNetwork network, Vector error); 007 008 void setNeuralNetwork(FunctionApproximator ffnn); 009 }