Deep Learning

Deep Learning

What is Deep Learning?

Deep learning is a subset of machine learning in artificial intelligence (AI) that has networks based learning from data that is unstructured or unlabeled. Also known as deep neural learning or deep neural network. This is also similar to the Human Brain.

Do you know the First Neuron created?

Yes, Perceptron is the first neural network unit, that does some computations to detect features and business intelligence in input data. This was introduced by Frank Rosenblatt in 1957.

Types of Deep Learning?

  • Artificial Neural Network
  • Deep Brief Net
  • Convolutional Neural Network
  • Recurrent Neural Network

Neural Network





















The first layer is the Input Layer, next is the Hidden layer and the final one is the Output layer. there can be any number of hidden layers in the network.

How Neural Network works?



















Neural Network we create works similar to the human brain, we give features through the input layer (eye) and it gets trained in the hidden layer, and output is predicted.


Weights are assigned in between every layer. After weights are assigned, there are 3 steps done.

Step 1:

all the weights are multiplied with respected features.

Step 2:

the above result is added with BIAS Value.

Step 3:

an activation function is applied with the above result.

Step 4:

The loss Function is calculated with the result.

This forward movement is called Forward Propagation. If the output value of forward propagation is away from the actual value, then based on the Loss Function evaluated Backward Propagation is done to reduce Loss Function.

Next, we can get into the activation functions.

Comments

Popular posts from this blog

Loss & Cost Functions

Recurrent Neural Network & LSTM