Wednesday, November 13, 2019

Principle component analysis (PCA)


PCA ref:
benefits:
  • reduce the dimension so improve the performence
  • try to keep 99% of variance  retained

Application of PCA
  • Compression
    • reduce the memory/disk need to store data
    • speed up the learning alogorithm
  •  Visualization
    • 2D/3D for visualization 

Before implemening PCA, first try running whatever you want to do with the orginal data/raw data. Only if that does not do what you want, then consiser the PCA.

No comments:

Post a Comment

Autoboxing and Unboxing

  Autoboxing  is the automatic conversion that the Java compiler makes between the primitive types and their corresponding object wrapper cl...