On Eigenfaces: Creating ghost-like images from a set of faces
mikedusenberry.com
On Eigenfaces: Creating ghost-like images from a set of faces
1–10 of 16 posts
Re: On Eigenfaces: Creating ghost-like images from a set of faces
#2Re: On Eigenfaces: Creating ghost-like images from a set of faces
#3Isn't this one of the homework's in the stanford/coursera ml course? I feel like this is not really original content
Re: On Eigenfaces: Creating ghost-like images from a set of faces
#4https://lambdal.com/images/autoencoder-learning-face-filters...
Re: On Eigenfaces: Creating ghost-like images from a set of faces
#5(•_•) ( •_•)>⌐■-■ (⌐■_■)
Re: On Eigenfaces: Creating ghost-like images from a set of faces
#6Isn't this one of the homework's in the stanford/coursera ml course? I feel like this is not really original content
http://jeremykun.com/2011/07/27/eigenfaces/
http://nbviewer.ipython.org/github/rcquan/sklearn-practice/b...
The wikipedia article (https://en.wikipedia.org/wiki/Eigenface) also contains code for a MATLAB implementation.
Re: On Eigenfaces: Creating ghost-like images from a set of faces
#7Re: On Eigenfaces: Creating ghost-like images from a set of faces
#8Here's an animation of an autoencoder learning filter weights. It's interesting that they look similar. https://lambdal.com/images/autoencoder-learning-face-filters...
There's probably newer results on this topic; I'm sure.
However, I will say that I've created some autoencoders on toy sets like those found in scikit-learn, and the spaces learned via the autoencoder and the spaces found through PCA were often similar if not identical. For example, if my input vectors were in R^n (with n > 3) and I restricted an autoencoder to 3 units, the encoding matrix of the autoencoder would span the same subspace as the first 3 principal component directions.
[1]: http://oucsace.cs.ohiou.edu/~razvan/courses/dl6900/papers/bo...
Re: On Eigenfaces: Creating ghost-like images from a set of faces
#9http://www.mitpressjournals.org/doi/abs/10.1162/jocn.1991.3....
nearly 25 years old and 13k references, so it's pretty well studied...!
Re: On Eigenfaces: Creating ghost-like images from a set of faces
#10Isn't this one of the homework's in the stanford/coursera ml course? I feel like this is not really original content
Nonetheless, I've found it to be an interesting concept. There is indeed a homework from the Coursera ML course for computing and visualizing eigenfaces, and the course (and the Stanford CS229 notes) discuss PCA further. I decided to explore the ideas further and distill it into a blog post specifically on eigenfaces.
Goal is for it to serve as a condensed tutorial on an interesting topic! I definitely learned a bunch writing it, and it may be interesting to others who have yet to come across to concept.