Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

README.md

Neural networks from scratch, in python

Chapter 1:

Neural Networks - Bunch of interconnected 'neurons' that gets activated based on the previous layers.

 

Visualize a neural network - NN-SVG

Play with the pramaters to get a feel of neural networks.

 

Visualize a various neural network sizes - nnfs.io link

 

Every neuron's connection has something called 'weights' and 'bias'.

Weights are the ones that scale the input.

Bias are the ones that offsets the resultant by the operation by the weights

Idea of Weights and Biases (nnfs.io)

Here, you can see how the weights and biases impact the output.

The idea of activation function is better explained later on

 

Visual depection of a neural network classifying an image - Image classification with neural networks (nnfs.io)

 

Math behind one forward pass - Forward pass is nothing but, just the input passing throught the neurons and giving an output.

Math (nnfs.io)

Math, but in python (nnfs.io)


Chapter 1 of nnfs book.