Python Deep Learning Notes
Python Deep Learning Notes
Python Deep Learning Notes
LECTURE - 1
Workshop
Neural Networks
SHAPEAI
02
GETTING STARTED
WITH NEURAL NETWORKS
NEURAL
NETWORKS
04
NEURAL
NETWORKS
ARTIFICIAL NEURAL
NETWORKS
(x1, x2)
h(x1, x2) = w0 + w1 x1 + w2 x 2
In order to determine this hypothesis function we just
need to determine what these wights should be.
12
f(t)
g(x)=1, if x>=0 1
0, if x<0
0.5
t
-2 -1.5 -1 -0.5 0.5 1 1.5 2
W.X
13
W.
14
W.
15
h(x1, x2) = g( w0 + w1 x1 + w2 x2 )
Activation function can be thought of as an other function
g() that is applied to the result of all of this computation.
16
w0
x1 w1
g( w0 + w1 x1 + w2 x2 )
x2 w2
We will represent the above mathematical formula using
a structure like this.
17
W.
18
-1
x0 1
g( -1 + 1* x1 + 1* x2 )
x1 1
-1 0 1
19
-1
x0 0 1
g( -1 + 1* x1 + 1* x2 )
x1 0 1
-1 0 1
20
-1
x0 0 1
g( -1 + 1* x1 + 1* x2 )
x1 0 1
-1 0 1
21
-1
x0 0 1
0 g( -1 + 1* x1 + 1* x2 )
x1 0 1
-1 0 1
22
CLASSIFICATION
humidity
it will rain or not
pressure
23
REGRESSION
advertising
sales
webinar
24
COMPLEX NEURAL
NETWORKS
25
DEEP NEURAL
NETWORKS
26
FEED-FORWARD
NEURAL NETWORKS
Such that the inputs move from the input to the hidden layers and then to
the output. They propagate only in one direction.
2
y-y' (y-y') |y-y'|
Residual loss Squared Loss Absolute loss
W1 VS W2 PLOT
GRADIENT DESCENT
THANKS
SHAPEAI