Open In App

Artificial Neural Network Terminologies

The ANN(Artificial Neural Network) is based on BNN(Biological Neural Network) as its primary goal is to fully imitate the Human Brain and its functions. Similar to the brain having neurons interlinked to each other, the ANN also has neurons that are linked to each other in various layers of the networks which are known as nodes.

 

The ANN learns through various learning algorithms that are described as supervised or unsupervised learning.



ANN Terminology:

 

 

 

Here,{1,x1…xn} are the inputs, and the output (Y) neurons will be computed by the function g(x) which sums up all the input and adds bias to it.

g(x)=∑xi+b where i=0 to n
    = x1+........+xn+b

and the role of the activation is to provide the output depending on the results of the summation function:



Y=1 if g(x)>=0
Y=0 else
For Example:
Y=1 if net input>=threshold
Y=0 else

 Supervised Learning Algorithms:

Unsupervised Learning Algorithms:

Article Tags :