an inefficient simple neural network with python with AND operator as a dataset. using only one hidden layer with three neuron in hidden, numpy and matplotlib
X | Y | XY |
---|---|---|
1 | 1 | 1 |
1 | 0 | 0 |
0 | 1 | 0 |
0 | 0 | 0 |
an Inefficient simple neural network with python with only one hidden layer and using sigmoid as a activation function
Python