-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArtificial Neural Network
25 lines (17 loc) · 1.45 KB
/
Artificial Neural Network
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Artificial Neural Network
The task to be performed is to construct an artificial neural network that takes into account all independent variables and predict whether or not our
customer will leave the bank.
Artificial Neural Network use the artificial neurons or nodes for solving the learning problem.An input layer, numerous hidden layers, and an output layer make up
these layers. Each node in one layer is connected to the nodes in the next layer. By increasing the number of hidden layers, we can make the network deeper.
An input layer, numerous hidden layers, and an output layer make up these layers. Each node in one layer is connected to the nodes in the next layer.
By increasing the number of hidden layers, we can make the network deeper.
We can apply ANN to any possible tasks
-- classification
-- numeric prediction
-- unserupervised pattern recognisation
Articifical neural network can be used where input and output is very simple but the tasks performed inside is very complex.
Biological neurons
Their are the inputs as per the number of features how many features are their yhose are considered as the input.
Then their is a weight that is associated with each input and the weigth tell us what is the importance of the particular feature i.e how important is the tasks.
Then we have the activation function i.e we can say the threshold at which this threshold is attained at this particular time the signal will pass and it will
produce the output.