Date: March 24th, 2016
Title: Nonlinear Dimensionality Reduction by Locally Linear Embedding
Author: Sam T. Roweis and Lawrence K. Saul
Novelties:
1. Introduce LLE(locally linear embedding), which is an unsupervised and neighborhood-preserving embeddings.Contributions:
1. The method is straightforward, the only free parameter is the number of neighbors, K.
2. LLE does not have to be rerun when more dimensions are added to it.
Technical Summarizes:
LLE is a method to mapping high-dimensional inputs into a low-dimensional space and preserving neighborhoods.
So the method based on geometric intuitions is to reconstruct each data point from its neighbors.
The reconstruction errors are add up the squared distances between all the data points and their reconstructions, that is:
The W is the weights we computed, W_ij means the contribution of the jth data point to the ith data point.
That is, if the jth data point is not a neighbor of the ith data point, W_ij should be 0, and we normalized the summation of all the points' weight to the ith data point to 1.
After mapping X into low-dimensional vector Y with minimizing the following cost function:
The step can be illustrated in the following figure:












