Pattern is used represent an input pattern or output
pattern a neural net processes or produces.
Constructs a Pattern from an array containing true or
false, where true means the neuron is supposed to
fire (for an input pattern) or it has fired (for an output pattern) and
false means it is not supposed to fire or hasn't fired.
Counstructs a Pattern from an array containing 0s and 1s,
where 1 corresponds to true and 0 to
false.
Counstructs a Pattern from a String containing 0s and 1s,
where 1 corresponds to true and 0 to
false.
PatternConverter is used to convert
java.lang.Strings to arrays of
Patterns
and vice versa.
PatternCreateException is used to handle errors when creating
Pattern objects.
PatternGiverReaderCommunicationException is thrown when there is a problem
in the communication between
PatternGiver and
PatternReader.
PatternLayerMismatchException is thrown when a net is trained, but the size of an
output pattern doesn't match the size of the output layer.
PatternReader is used to read the output
produced by a
NeuralNet.