org.strbio.util
Interface NeuralNet.Trainable

All Known Implementing Classes:
TrainingSet.Present2ary, TrainingSet.PresentClass1, TrainingSet.PresentClass4, TrainingSet.PresentLvl2
Enclosing class:
NeuralNet

public static interface NeuralNet.Trainable

This is the interface you have to implement for objects that are to be used used in training neural nets.


Method Summary
 void presentPatterns(NeuralNet n)
          This method should not modify any weights itself; just present all the patterns and call prop() and backprop() for each.
 

Method Detail

presentPatterns

void presentPatterns(NeuralNet n)
This method should not modify any weights itself; just present all the patterns and call prop() and backprop() for each.