Perceptron
This is a C++ example of a perceptron that was orginally made in Java by The Coding Train. Given an X and a Y value. The perceptron guesses whether that point is above or below the line of Y=X.
if x=4 and y=2 : guess=-1
if x=2 and y=4 : guess=1
This project is licensed under the MIT License - see the LICENSE file for details