Q. In the context of linear regression, what does 'overfitting' mean?
-
A.
The model performs well on training data but poorly on unseen data
-
B.
The model is too simple to capture the underlying trend
-
C.
The model has too few parameters
-
D.
The model is perfectly accurate
Solution
Overfitting occurs when a model learns the noise in the training data rather than the underlying pattern, leading to poor performance on unseen data.
Correct Answer:
A
— The model performs well on training data but poorly on unseen data
Learn More →
Q. What is the purpose of the training set in linear regression?
-
A.
To evaluate the model's performance
-
B.
To tune hyperparameters
-
C.
To fit the model and learn the relationship between variables
-
D.
To visualize the data
Solution
The training set is used to fit the model and learn the relationship between the independent and dependent variables.
Correct Answer:
C
— To fit the model and learn the relationship between variables
Learn More →
Q. Which of the following is a potential problem when using linear regression?
-
A.
Overfitting
-
B.
Multicollinearity
-
C.
Underfitting
-
D.
All of the above
Solution
All of the listed options can be potential problems when using linear regression, affecting the model's performance and interpretability.
Correct Answer:
D
— All of the above
Learn More →
Q. Which of the following techniques can help prevent overfitting in linear regression?
-
A.
Increasing the number of features
-
B.
Using regularization techniques like Lasso or Ridge
-
C.
Decreasing the size of the training set
-
D.
Ignoring outliers
Solution
Regularization techniques like Lasso or Ridge can help prevent overfitting by adding a penalty for larger coefficients.
Correct Answer:
B
— Using regularization techniques like Lasso or Ridge
Learn More →
Showing 1 to 4 of 4 (1 Pages)