Rahul Sharma (Editor)

Manifold alignment

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Manifold alignment is a class of machine learning algorithms that produce projections between sets of data, given that the original data sets lie on a common manifold. The concept was first introduced as such by Ham, Lee, and Saul in 2003, adding a manifold constraint to the general problem of correlating sets of high-dimensional vectors.

Contents

Overview

Manifold alignment assumes that disparate data sets produced by similar generating processes will share a similar underlying manifold representation. By learning projections from each original space to the shared manifold, correspondences are recovered and knowledge from one domain can be transferred to another. Most manifold alignment techniques consider only two data sets, but the concept extends to arbitrarily many initial data sets.

Consider the case of aligning two data sets, X and Y , with X i R m and Y i R n .

Manifold alignment algorithms attempt to project both X and Y into a new d-dimensional space such that the projections both minimize distance between corresponding points and preserve the local manifold structure of the original data. The projection functions are denoted:

ϕ X : R m R d

ϕ Y : R n R d

Let W represent the binary correspondence matrix between points in X and Y :

W i , j = { 1 i f X i Y j 0 o t h e r w i s e

Let S X and S Y represent pointwise similarities within data sets. This is usually encoded as the heat kernel of the adjacency matrix of a k-nearest neighbor graph.

Finally, introduce a coefficient 0 μ 1 , which can be tuned to adjust the weight of the 'preserve manifold structure' goal, versus the 'minimize corresponding point distances' goal.

With these definitions in place, the loss function for manifold alignment can be written:

arg min ϕ X , ϕ Y μ i , j ϕ X ( X i ) ϕ X ( X j ) 2 S X , i , j + μ i , j ϕ Y ( Y i ) ϕ Y ( Y j ) 2 S Y , i , j + ( 1 μ ) i , j ϕ X ( X i ) ϕ Y ( Y j ) 2 W i , j

Solving this optimization problem is equivalent to solving a generalized eigenvalue problem using the graph laplacian of the joint matrix, G:

G = [ μ S X ( 1 μ ) W ( 1 μ ) W T μ S Y ]

Inter-data correspondences

The algorithm described above requires full pairwise correspondence information between input data sets; a supervised learning paradigm. However, this information is usually difficult or impossible to obtain in real world applications. Recent work has extended the core manifold alignment algorithm to semi-supervised , unsupervised , and multiple-instance settings.

One-step vs. two-step alignment

The algorithm described above performs a "one-step" alignment, finding embeddings for both data sets at the same time. A similar effect can also be achieved with "two-step" alignments , following a slightly modified procedure:

  1. Project each input data set to a lower-dimensional space independently, using any of a variety of dimension reduction algorithms.
  2. Perform linear manifold alignment on the embedded data, holding the first data set fixed, mapping each additional data set onto the first's manifold. This approach has the benefit of decomposing the required computation, which lowers memory overhead and allows parallel implementations.

Instance-level vs. feature-level projections

Manifold alignment can be used to find linear (feature-level) projections, or nonlinear (instance-level) embeddings. While the instance-level version generally produces more accurate alignments, it sacrifices a great degree of flexibility as the learned embedding is often difficult to parameterize. Feature-level projections allow any new instances to be easily embedded in the manifold space, and projections may be combined to form direct mappings between the original data representations. These properties are especially important for knowledge-transfer applications.

Applications

Manifold alignment is suited to problems with several corpora that lie on a shared manifold, even when each corpus is of a different dimensionality. Many real-world problems fit this description, but traditional techniques are not able to take advantage of all corpora at the same time. Manifold alignment also facilitates transfer learning, in which knowledge of one domain is used to jump-start learning in correlated domains.

Applications of manifold alignment include:

  • Cross-language information retrieval / automatic translation
  • By representing documents as vector of word counts, manifold alignment can recover the mapping between documents of different languages.
  • Cross-language document correspondence is relatively easy to obtain, especially from multi-lingual organizations like the European Union.
  • Transfer learning of policy and state representations for reinforcement learning
  • Alignment of protein NMR structures
  • References

    Manifold alignment Wikipedia