Artificial Intelligence - Artificial Neural Networks

Avatto > > UGC NET COMPUTER SCIENCE > > PRACTICE QUESTIONS > > Artificial Intelligence > > Artificial Neural Networks

16. What is the sequence of steps followed in training a perceptron?
1. For a sample input, compute an output
2. Initialize weights of perceptron randomly
3. Go to the next batch of dataset
4. If the prediction does not match the output, change the weights

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


17. The neural network given below takes two binary valued inputs x1, x12 ϵ {0, 1} and the activation function is the binary threshold function (h(x)=l if x>0;O otherwise). Which of the following logical functions does it compute?

ann3

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


18. What are the steps for using a gradient descent algorithm?
1. Calculate error between the actual value and the predicted value
2. Repeat until you find the best weights of network
3. Pass an input through the network and get values from output layer
4. Initialize random values for weight and bias
5. Go to each neurons which contributes to the error and change its respective values to reduce the error

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


19. A 4-input neuron has bias of 0 and weights 1, 2, 3 and 4. The transfer function is given by f(v)= max(O,v). The inputs are 4, 10, 5 and 20 respectively. The output will be

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


20. For the same size of training data as input, the fastest learning technique is

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *