Q. In a neural network, what is the purpose of the loss function?
-
A.
To measure the accuracy of predictions
-
B.
To calculate the gradient
-
C.
To evaluate model performance
-
D.
To quantify the difference between predicted and actual values
Solution
The loss function quantifies how well the neural network's predictions match the actual target values.
Correct Answer:
D
— To quantify the difference between predicted and actual values
Learn More →
Q. What does 'epoch' refer to in the context of training a neural network?
-
A.
A single pass through the entire training dataset
-
B.
The number of layers in the network
-
C.
The learning rate schedule
-
D.
The size of the training batch
Solution
An epoch is one complete pass through the entire training dataset during the training process of a neural network.
Correct Answer:
A
— A single pass through the entire training dataset
Learn More →
Q. What does 'overfitting' mean in the context of neural networks?
-
A.
The model performs well on training data but poorly on unseen data
-
B.
The model is too simple to capture the underlying patterns
-
C.
The model has too few parameters
-
D.
The model is trained too quickly
Solution
Overfitting occurs when a model learns the training data too well, including noise, resulting in poor generalization to new data.
Correct Answer:
A
— The model performs well on training data but poorly on unseen data
Learn More →
Q. What is the main advantage of using Convolutional Neural Networks (CNNs)?
-
A.
They require less data
-
B.
They are faster than traditional networks
-
C.
They are effective for image processing
-
D.
They are easier to implement
Solution
CNNs are specifically designed to process data with a grid-like topology, making them highly effective for image processing tasks.
Correct Answer:
C
— They are effective for image processing
Learn More →
Q. What is the primary advantage of using Convolutional Neural Networks (CNNs)?
-
A.
They require less data
-
B.
They are faster to train
-
C.
They are effective for image processing
-
D.
They are simpler to implement
Solution
CNNs are specifically designed to process and analyze visual data, making them highly effective for image-related tasks.
Correct Answer:
C
— They are effective for image processing
Learn More →
Q. What is the role of dropout in neural networks?
-
A.
To increase the learning rate
-
B.
To prevent overfitting
-
C.
To enhance feature extraction
-
D.
To speed up training
Solution
Dropout is a regularization technique used to prevent overfitting by randomly setting a fraction of input units to zero during training.
Correct Answer:
B
— To prevent overfitting
Learn More →
Q. Which metric is commonly used to evaluate the performance of a classification neural network?
-
A.
Mean Squared Error
-
B.
Accuracy
-
C.
R-squared
-
D.
F1 Score
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 evaluation metric for classification tasks in neural networks?
-
A.
Mean Absolute Error
-
B.
F1 Score
-
C.
Root Mean Squared Error
-
D.
R-squared
Solution
F1 Score is a common metric used to evaluate the performance of classification models, balancing precision and recall.
Correct Answer:
B
— F1 Score
Learn More →
Q. Which of the following is NOT a type of neural network?
-
A.
Convolutional Neural Network
-
B.
Recurrent Neural Network
-
C.
Support Vector Machine
-
D.
Feedforward Neural Network
Solution
Support Vector Machine (SVM) is a different type of machine learning algorithm, not a neural network.
Correct Answer:
C
— Support Vector Machine
Learn More →
Showing 1 to 9 of 9 (1 Pages)