Machine Learning Meetup Notes Perceptron Matlab: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

12 March 2009

  • curprev 22:3522:35, 12 March 2009 Jbm talk contribs 780 bytes +780 New page: <pre> % Perceptron Implementation (by Jean) % indata = [1,0,0;1,0,1;1,1,0;1,1,1]; expected = [1,1,1,0]; % Learning Rate LR = 0.1; % Initial set of weights. weights = [0,0,0]; threshold = ...