AI Unit 6 Deep Learning Basics of Neural Network
AI Unit 6 Deep Learning Basics of Neural Network
▪ NN
- part of Nervous sytem (interconnected neurons)
Output:
=1 ; if X1=X2=1
=0 ; otherwise
here that wearing a white cloth has almost no correlation with the possibility of
rainfall.
So, a possible output function can be: O = x1 + 0.1 * x2
w = [ w1 w2 w3 …. wn],
x = [x1 x2 x3 …. xn]
B(bias) = -(threshold)
Where,
O=1 ; {x * (weight of x) + y * (weight of y) +
b} > 0,
O=0 ; otherwise
Prof. Bhavisha Suthar
BNN ANN
Slower in speed. Faster in speed.
Adaptable is possible because new Adaptable is not possible because
information is added without new information destroys the old
destroying old information. information.
Fault-tolerant: if irrespective of faults No fault-tolerant: If information
in network connections, then also corrupted in the memory, it can not
information is still preserved. be restored back.
Memory and processing elements are Memory and processing are separate.
collocated.
There is self organization during the This is software dependent.
learning.
Parallel and asynchronous. Sequential synchronous.
Prof. Bhavisha Suthar
- A bias unit is an extra neuron added to each pre-
output layer that stores the value of 1.
- are not connected to any previous layer
- It is just appended to the start/end of the input
and each hidden layer,
- is not influenced by the values in the previous
layer
- neurons don't have any incoming connections.
Conceptually, nodes
at higher levels
successively
abstract features
from preceding
layers
NOTE: Only weights connecting active input units (xi!=0) are updated.
Weights are updated only for patterns that do not produce the
correct value of y.
Prof. Bhavisha Suthar
▪ If two classes of patterns can be separated by a decision boundary,
represented by the linear equation
▪ then they are said to be linearly separable. The simple network can
correctly classify any patterns.
▪ If such a decision boundary does not exist, then the two classes are
said to be linearly inseparable.
▪ Linearly inseparable problems cannot be solved by the simple
network , more sophisticated architecture is needed.