Artificial Neural Network Flashcards

1
Q

define artificial neural network

A

A neural network is essentially a system of organizing machine
learning algorithms to perform certain tasks.Neural networks are loosely modelled after how neurons in the human brain behave. It is a fast and efficient way to solve problems for which
the dataset is very large, such as in images.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what is the main advantage of neural network

A

The key
advantage of neural networks are that they are able to extract data features automatically without
needing the input of the programmer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

give the relationship between data size and perofmrance of model

A

The larger Neural Networks tend to perform better with larger amounts of data whereas the traditional machine learning algorithms stop improving after a certain saturation
point.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what are layers and what are nodes

A

A Neural Network is divided into multiple layers
and each layer is further divided into several blocks called nodes. Each node has its own task to
accomplish which is then passed to the next layer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what is the input layer

A

The first layer of a Neural Network is known as the
input layer. The job of an input layer is to acquire data and feed it to the Neural Network. No
processing occurs at the input layer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what is the hidden layers

A

. Hidden layers are the layers in
which the whole processing occurs. Their name essentially means that these layers are hidden and are
not visible to the user.
Each node of these hidden layers has its own machine learning algorithm which it executes on the
data received from the input layer. The processed output is then fed to the subsequent hidden layer .There can be multiple hidden layers in a neural network system and their number
depends upon the complexity of the function for which the network has been configured

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what is the output layer

A

The last hidden layer passes the final processed
data to the output layer which then gives it to the user as the final output. Similar to the input layer,
output layer too does not process the data which it acquires. It is meant for user-interface

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

lis tthe features of neural network

A

-neural networks are modelled on the human brain and nervous system
-neural networks are able to extract data features automatically without needing input from the programmer
-each neural network node is essentially a machine learning algorith,
-it is very useful for solving problems when the dataset is very large

How well did you know this?
1
Not at all
2
3
4
5
Perfectly