Tools
swaine.lst
Associated article: Parker's Perceptions
Tags: Tools
_Programming Paradigms_
by Michael Swaine
[LISTINÇ ONE]
Program BackPropagationDemo;
Const NumOfRows = 2; (* Number of rows of cells. *)
NumOfCols = 2; (* Number of columns of cells. *)
LearningRate = 0.25; (* Learning rate. *)
Criteria = 0.005; (* Convergence criteria. *)
Zero = 0.05; (* Anything below 0.05 counts as zero. *)
One = 0.95; (* Anything above 0.95 counts as one. *)
...


