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 0
s and 1
s,
where 1
corresponds to true
and 0
to
false
.
Counstructs a Pattern from a String containing 0
s and 1
s,
where 1
corresponds to true
and 0
to
false
.
PatternConverter is used to convert
java.lang.String
s to arrays of
Pattern
s
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
.