NEURAL-NETWORK-SIMPLE-MARCH_2021

Simple artificial neural network written from memory/scratch by God in java

Author: God Bennett

This particular session was coded by God in association with Jamaica Artificial Intelligence Association organized by Matthew Stone, and also God's Live-Agile-Artificial-Neural-Network-Programming-Sessions.

Why?: This is practice writing of basic neural network from memory. (I do this at the end of each year, or sometimes every 6 months, for practice of fundamentals.)

Date: March 21, 2021. (1.5 hours used)

The problem space is X-OR inputs. So the model does xor input prediction.

Given two numbers in X-OR space, the model will try to guess the output.

For:

a) Input=(0,0) output should be 0

b) Input=(1,0) output should be 1

c) Input=(0,1) output should be 1

d) Input=(1,1) output should be 0

Alt text