NCA-AIIO · Question #61
Which phenomenon explains performance degradation when adding many irrelevant features?
The correct answer is C. Curse of dimensionality. As the number of features (dimensions) grows, the volume of the feature space increases exponentially, and training data becomes increasingly sparse relative to that space. Distance metrics lose meaning (all points appear roughly equidistant), and the model must learn boundaries
Question
Which phenomenon explains performance degradation when adding many irrelevant features?
Options
- AGradient vanishing
- BBias increase
- CCurse of dimensionality
- DUnderfitting
How the community answered
(37 responses)- B3% (1)
- C92% (34)
- D5% (2)
Explanation
As the number of features (dimensions) grows, the volume of the feature space increases exponentially, and training data becomes increasingly sparse relative to that space. Distance metrics lose meaning (all points appear roughly equidistant), and the model must learn boundaries in a vast, poorly-sampled space - leading to degraded generalization even if training accuracy looks acceptable. Irrelevant features compound this by adding noise dimensions. Gradient vanishing (A) is a problem in deep network training dynamics. Bias increase (B) relates to underfitting, not high-dimensional noise. Underfitting (D) is a symptom, not the underlying cause; the curse of dimensionality is the mechanism.
Topics
Community Discussion
No community discussion yet for this question.