Code Monkey home page Code Monkey logo

pca-principal-component-analysis's Introduction

PCA-Principal-Component-

Background
	Let X be an N × D data matrix, where N is the number of images and D is the number of pixels of
each image. For a given parameter K < D, use PCA to compress X into an N × K matrix. this is done via first 
centering the data, then finding the top K eigenvectors of the covariance matrix XTX, and finally projecting 
the original data onto these eigenvectors. Since each of these eigenvectors has dimensionality D, it can also 
be represented as an image of the same size as the dataset.

Compression
	Implement PCA in function pca of pca.py file, which returns the compressed representation Y ∈ RN×K and a matrix 
M ∈ RD×K that consists of the top K eigenvectors, represented as column vectors. Note that we have subtracted the 
mean values from the data before passing it to pca, so you do not need to do this step.

Decompression
	With the eigenvector matrix M, we can approximately reconstruct the original dataset as X~ = YMT. Implement
this step in function decompress of pca.py.
	It is easy to see that larger K leads to better reconstruction. To quantify the reconstruction error
between the original image x and the reconstructed one ˆx, we calculate the pixel-wise mean-square-error
as 1/D||x − x~||2. Implement this step in function reconstruction_error of pca.py.

pca-principal-component-analysis's People

Contributors

c2chen1994 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.