Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Written by MS CS
Masters in Computer Science Student at ULL. Currently focusing on Machine Learning.
What is neural networks?
What is Deep learning?
Deep learning were invented in 1960s, it caught wind around 1980s
Everybody thought that deep learning or neural networks were this new things that is going to impact the world, is going to solve all the world problems, and then it kind of slowly died off over the next decades.
Why did neural network not survive for a long time?
So what happened?
The reason, it the fact that the technology back then was not up to the right standard in order to facilitate neural networks.
In order to Deep learning and Neural networks to work properly you need:
Still what is Deep learning?
Idea behind deep learning is to mimic how the human brain operates and recreate it
Human brains is one of the most creative, powerful tool on this planet for learning and adapting. If computer could copy that , we can just leverage that.
Example of brain neurons:
These neurons are connected to 1000s of other neighbour neurons.
These neurons are responsible for any activities we perform.
How do we recreate this in computer?
For example,
Next, we will discuss:
The Neuron:
The very first step to creating artificial neural networks is to recreate a neuron.
So how do we do that?
Let's see how neuron looks first
This is how the neuron looks like. It has
Neuron by themselves are like an ant,
But the game changes when there are lots of ants, millions of ants they can do anything.
Similarly, How do neurons work together then?
That's what the dendrites and axon are for.
Now let's see how we can represent this on a computer?
In the right side image:
Just like how a neuron is composed:
Similarly, in a artificial neuron on the left side of the image:
Whatever inputs you are putting in, that's for 1 row, and the output you get back is for the exact same row.
What is independent variables?
What can be our output value?
Synapses:
Tiny gaps between neurons that allow them to communicate with each other.
In artificial neural networks, synapses between nodes, they are assigned weights.
Comparing to artificial neuron node:
Here, w1, w2, w3, wn are weights assigned to synapeses.
Weights are crucial for neural networks:
When you are training your artificial neural network, you're basically adjusting all of the weights in all of the synapses across the whole neural network.
Thus the birth of Gradient Descent and Backpropagation.
So signals go to neuron and what happens to the neuron?
What processing happens inside the neuron?
Depending on the function , the neuron will either pass the signal or it won't pass the signal on to the next neuron.
What is Activation Function?
Assuming your independent variable is binary i.e 0 or 1. Which activation function would you use?
How many layers of hidden layer it has to be to considered deep learning neural network?
This is the note i took from udemy lecture & CSCE 598 Deep learning class @ ULL.
https://www.udemy.com/course/deeplearning/learn/lecture/6743222#overview
#deeplearning #neuralnetworks #machinelearning #chapter1