January 25th 2008 10:02 am
Dimensionality reduction: Isomap
Isomap is one of the “oldest” tools for dimensionality reduction. It aims at reproducing geodesic distances (geodesic distances are a property of Riemanian manifolds) on the manifold in an Euclidiean space.
To compute the approximated geodesic distances, a graph is created, an edge linking two close points (K-neighboors or Parzen windows can be used to choose the closest points) with its weight being the Euclidean distance between them. Then, a square matrix is computed with the shortest path between two points with a Dijkstra or Floyd-Warshall algorithm. This follows some distance and Riemanian manifolds properties. The number of points is generally chosen based on the estimated distance on the manifold.
Finally, an classical MDS procedure is performed to get a set of coordinates.
Some results for the SwissRoll :
![]()
I reduce this data set with the 8 nearest neighboors (so much more than the 4 that is the least for a 2D reduction) and got this :
![]()
The standard deviation for the error of the reduction between the original coordinates and the computed ones (up to an affine transformation) is 4.8% for 2000 points (the norm of the difference between the original coordinates and the reduced set is 3.01).
This is not much, but I will show you in the near future that we can do far better than 4.8%.
2 Comments »
2 Responses to “Dimensionality reduction: Isomap”
Leave a Reply
You must be logged in to post a comment.


Matt’s blog » Dimensionality reduction: explicit optimization of a cost function on 02 Apr 2008 at 8:16 am #
[...] on Euclidien distances, I implemented it with the approximated geodesic distances described in the Isomap ticket. The goal of this function is to add a weight (the inverse of the geodesic distance), leading to [...]
Matt’s blog » Dimensionality reduction: comparison of different methods on 23 Apr 2008 at 8:16 am #
[...] already given some answers in one of my first tickets on manifold learning. Here I will give some more complete results on the quality of the dimensionality reduction [...]