Q. In a neural network, what does the term 'backpropagation' refer to?
-
A.
The process of forward propagation of inputs
-
B.
The method of updating weights based on error
-
C.
The initialization of network parameters
-
D.
The evaluation of model performance
Solution
Backpropagation is the algorithm used to update the weights of the network by calculating the gradient of the loss function.
Correct Answer:
B
— The method of updating weights based on error
Learn More →
Q. In which scenario would you typically use a Convolutional Neural Network (CNN)?
-
A.
Time series prediction
-
B.
Image classification
-
C.
Text generation
-
D.
Reinforcement learning
Solution
CNNs are specifically designed for processing structured grid data like images, making them ideal for image classification tasks.
Correct Answer:
B
— Image classification
Learn More →
Q. What does the term 'learning rate' control in a neural network?
-
A.
The number of layers in the network
-
B.
The speed of weight updates
-
C.
The size of the training dataset
-
D.
The complexity of the model
Solution
The learning rate determines how much to change the model in response to the estimated error each time the model weights are updated.
Correct Answer:
B
— The speed of weight updates
Learn More →
Q. What is the purpose of normalization in the context of neural networks?
-
A.
To increase the number of features
-
B.
To ensure all input features have similar scales
-
C.
To reduce the size of the dataset
-
D.
To improve the model's interpretability
Solution
Normalization helps to ensure that all input features contribute equally to the model's learning process by scaling them to a similar range.
Correct Answer:
B
— To ensure all input features have similar scales
Learn More →
Q. Which evaluation metric is commonly used for classification tasks in neural networks?
-
A.
Mean Absolute Error
-
B.
Accuracy
-
C.
Root Mean Squared Error
-
D.
R-squared
Solution
Accuracy is a common metric used to evaluate the performance of classification models, including neural networks.
Correct Answer:
B
— Accuracy
Learn More →
Q. Which metric is commonly used to evaluate the performance of a neural network on a classification task?
-
A.
Mean Squared Error
-
B.
Accuracy
-
C.
R-squared
-
D.
Log Loss
Solution
Accuracy is a common metric for evaluating classification models, indicating the proportion of correct predictions.
Correct Answer:
B
— Accuracy
Learn More →
Q. Which of the following is a common application of neural networks?
-
A.
Image recognition
-
B.
Sorting algorithms
-
C.
Data encryption
-
D.
Web scraping
Solution
Neural networks are widely used in image recognition tasks due to their ability to learn complex patterns in visual data.
Correct Answer:
A
— Image recognition
Learn More →
Showing 1 to 7 of 7 (1 Pages)