Tools
neural.asc
Associated article: Neural Networks and Character Recognition
Tags: Tools
_NEURAL NETWORKS AND CHARACTER RECOGNITION_ by Ken Karnofsky [LISTING ONE] R = 35; % number of inputs S1 = 10; % number of neurons in layer 1 S2 = 26; % number of neurons in layer 2 [W1,B1] = nwlog(S1,R); % initial conditions for layer 1 W2 = rands(S2,S1)*0.01; % initial ...


