Today, I successfully wrote a fundamental artificial neural network from scratch/memory, in about 1000 lines of java code, without Ai libraries, as I have been doing for 2 years, approximately every 6 months.

The human brain is a remarkable engine, but sadly it had invented Gods prior to our invention of modern science :)

I NEURAL-NETWORK-SIMPLE-SEPTEMBER_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: September 7, 2021. (1.6 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