This is a small Neural Network I made. It finds patterns in sequences of numbers. For example, if we had this: Input output [ 1 0 1 ] [ 1 ] [ 0 0 1 ] [ 0 ] [ 0 1 1 ] [ 0 ] [ 1 0 0 ] [ 1 ] you notice the output is always the same as the first column of inputs. so now you give it a test input and output: [ 0 0 0 ] [ ? ] The artificial neuron would come out with a 0. But in this program, you give it the output and it decides if it fits the function or not.
Thanks to @123768631 for text engine. to lazy to make one myself lol