Neural Networks Multiple Choice Questions on “Backpropagation Algorithm″.
1. What is the objective of backpropagation algorithm?
A. to develop learning algorithm for multilayer feedforward neural network
B. to develop learning algorithm for single layer feedforward neural network
C. to develop learning algorithm for multilayer feedforward neural network, so that network can be trained to capture the mapping implicitly
D. none of the mentioned
Answer: C
Clarification: The objective of backpropagation algorithm is to to develop learning algorithm for multilayer feedforward neural network, so that network can be trained to capture the mapping implicitly.
2. The backpropagation law is also known as generalized delta rule, is it true?
A. yes
B. no
Answer: A
Clarification: Because it fulfils the basic condition of delta rule.
3. What is true regarding backpropagation rule?
A. it is also called generalized delta rule
B. error in output is propagated backwards only to determine weight updates
C. there is no feedback of signal at nay stage
D. all of the mentioned
Answer: D
Clarification: These all statements defines backpropagation algorithm.
4. There is feedback in final stage of backpropagation algorithm?
A. yes
B. no
Answer: B
Clarification: No feedback is involved at any stage as it is a feedforward neural network.
5. What is true regarding backpropagation rule?
A. it is a feedback neural network
B. actual output is determined by computing the outputs of units for each hidden layer
C. hidden layers output is not all important, they are only meant for supporting input and output layers
D. none of the mentioned
Answer: B
Clarification: In backpropagation rule, actual output is determined by computing the outputs of units for each hidden layer.
6. What is meant by generalized in statement “backpropagation is a generalized delta rule” ?
A. because delta rule can be extended to hidden layer units
B. because delta is applied to only input and output layers, thus making it more simple and generalized
C. it has no significance
D. none of the mentioned
Answer: A
Clarification: The term generalized is used because delta rule could be extended to hidden layer units.
7. What are general limitations of back propagation rule?
A. local minima problem
B. slow convergence
C. scaling
D. all of the mentioned
Answer: D
Clarification: These all are limitations of backpropagation algorithm in general.
8. What are the general tasks that are performed with backpropagation algorithm?
A. pattern mapping
B. function approximation
C. prediction
D. all of the mentioned
Answer: D
Clarification: These all are the tasks that can be performed with backpropagation algorithm in general.
9. Does backpropagaion learning is based on gradient descent along error surface?
A. yes
B. no
C. cannot be said
D. it depends on gradient descent but not error surface
Answer: A
Clarification: Weight adjustment is proportional to negative gradient of error with respect to weight.
10. How can learning process be stopped in backpropagation rule?
A. there is convergence involved
B. no heuristic criteria exist
C. on basis of average gradient value
D. none of the mentioned
Answer: C
Clarification: If average gadient value fall below a preset threshold value, the process may be stopped.