Perceptron: Difference between revisions

Content added Content deleted
(Added XLISP (non-graphical))
m (formatting of task description)
Line 7: Line 7:




;Task
;The task
The website [http://natureofcode.com/book/chapter-10-neural-networks/ The Nature of Code] demonstrates a perceptron by making it perform a very simple task : determine if a randomly chosen point (x, y) is above or below a line y = mx + b. Implement this perceptron and display an image of the result.
The website [http://natureofcode.com/book/chapter-10-neural-networks/ The Nature of Code] demonstrates a perceptron by making it perform a very simple task : determine if a randomly chosen point (x, y) is above or below a line:
y = mx + b

Implement this perceptron and display an image of the result.