Perceptron: Difference between revisions

Content added Content deleted
m (→‎{{header|zkl}}: added pointer)
mNo edit summary
Line 8: Line 8:


;The 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 print 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.