Skip to content

The simplest form of an artificial neural network explained and demonstrated.

Notifications You must be signed in to change notification settings

jackson-elfers/ai-simplest-network

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simplest artificial neural network

This is the simplest artificial neural network possible explained and demonstrated.

This is part 1 of a series of github repos on neural networks

Table of Contents

Theory

Mimicking neurons

Artificial neural networks are inspired by the brain by having interconnected artificial neurons store patterns and communicate with each other. The simplest form of an artificial neuron has one or multiple inputs each having a specific weight and one output .

alt text

At the simplest level, the output is the sum of its inputs times its weights.

A simple example

Say we have a network with two inputs and and two weights and .

The idea is to adjust the weights in such a way that the given inputs produce the desired output.

Weights are normally initialized randomly since we can't know their optimal value ahead of time, however for simplicity we will initialize them both with .

alt text

Then the output will be

The error

If the output doesn't match the expected result, then we have an error.
For example, if we wanted to get an expected output of then we would have a difference of

The most common way to measure the error is to use the square difference:

If we had multiple associations of inputs and expected outputs, then the error becomes the sum of each association.

To rectify the error, we would need to adjust the weights in a way that the actual output matches the expected output. In our example, lowering from to would do the trick, since

However, in order to adjust the weights of our neural networks for many different inputs and expected outputs, we need a learning algorithm.

Gradient descent

The idea is to use the error in order to adjust each weight so that the error is minimized.

What is a gradient?

It's essentially a vector pointing to the direction of the steepest ascent of a function. The gradient is denoted with and is simply the partial derivative of each variable of a function expressed as a vector.

Example for a two variable function:

What is gradient descent?

The descent part simply means using the gradient to find the direction of steepest ascent of our function and then going in the opposite direction by a small amount many times to find the function global minimum.

We use a constant called the learning rate, denoted with to define how small of a step to take in that direction.

If is too large, then we risk overshooting the function minimum, but if it's too low then the network will take longer to learn and we risk getting stuck in a local minimum.

alt text

Gradient descent applied to our example network

For our two weights and we need to find the gradient of those weights with respect to the error function

For both and , we can find the gradient by using the chain rule

From now on we will denote the as the term.

Once we have the gradient, we can update our weights

And we repeat this process until the error is minimized within a chosen threshold.

Code example

The included example teaches the following dataset to a neural network with two inputs and one output using gradient descent:

Once learned, the network should output ~0 when given two s and ~ when given a and a .

How to run

Online on repl.it

Run on Repl.it

Docker

docker build -t simplest-network .
docker run --rm simplest-network

References

  1. Artificial intelligence engines by James V Stone (2019)
  2. Complete guide on deep learning: http://neuralnetworksanddeeplearning.com/chap2.html

About

The simplest form of an artificial neural network explained and demonstrated.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 95.7%
  • Dockerfile 4.3%