C9_inprogress Flashcards
1
Q
feature normalization
A
- scaling: x’ = (x - min(x)) / (max(x) - min(x))
- standardization: x’ = (x - x_gem) / sd
2
Q
dimensionality reduction
A
- select top-k most important features (use Mutual Information or Chi-square between classes and features) or use frequency as criterion
- use matrix transformation technique