Home >> All >> AI >> [ NeuralNetworks Javadoc ] |
Source code: AI/NeuralNetworks/NeuralNetworkTeacher.java
1 /* NeuralNetworkTeacher.java */ 2 3 package AI.NeuralNetworks; 4 5 import java.util.*; 6 7 /** 8 This interface defines a NerualNetwork Teacher 9 */ 10 public interface NeuralNetworkTeacher { 11 12 /** 13 Trains the network with the given patterns 14 @param patterns are the pairs of input-expected output that the network must learn 15 */ 16 public float trainNetwork(LinkedList patterns)throws UnexpectedInputArraySizeException; 17 18 19 }