RachelPerceptronPython: 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.

5 March 2010

11 March 2009

  • curprev 23:2423:24, 11 March 2009Rachel talk contribs 1,583 bytes +1,583 New page: <pre> #!/usr/bin/python down = False up = True def dp (inputs, weights) : sum = 0.0 i = 0 while(i < len(inputs)) : sum += inputs[i]*weights[i] i += 1 return sum learnin...