1/3
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
|---|
No study sessions yet.
What’s the difference between feature selection and extraction?
Selection: keep existing features; Extraction: create new features (e.g. PCA, LDA).
What does explained_variance_ratio_ = [0.6, 0.3, 0.05] mean in PCA?
The 3 components explain 60%, 30%, and 5% of total variance → first component dominates.
What does LDA do?
Finds projection maximizing class separation (between-class variance / within-class variance).
What does PCA do?
Finds directions maximizing data variance (unsupervised).