Supriya Ghosh (Editor)

Multilinear subspace learning

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Multilinear subspace learning

Multilinear subspace learning is an approach to dimensionality reduction. Dimensionality reduction can be performed on data tensor whose observations have been vectorized and organized into a data tensor, or whose observations are matrices that are concatenated into a data tensor. Here are some examples of data tensors whose observations are vectorized or whose observations are matrices concatenated into data tensor images (2D/3D), video sequences (3D/4D), and hyperspectral cubes (3D/4D).

Contents

The mapping from a high-dimensional vector space to a set of lower dimensional vector spaces is a multilinear projection.

Multilinear subspace learning algorithms are higher-order generalizations of linear subspace learning methods such as principal component analysis (PCA), independent component analysis (ICA), linear discriminant analysis (LDA) and canonical correlation analysis (CCA).

Background

With the advances in data acquisition and storage technology, big data (or massive data sets) are being generated on a daily basis in a wide range of emerging applications. Most of these big data are multidimensional. Moreover, they are usually very-high-dimensional, with a large amount of redundancy, and only occupying a part of the input space. Therefore, dimensionality reduction is frequently employed to map high-dimensional data to a low-dimensional space while retaining as much information as possible.

Linear subspace learning algorithms are traditional dimensionality reduction techniques that represent input data as vectors and solve for an optimal linear mapping to a lower-dimensional space. Unfortunately, they often become inadequate when dealing with massive multidimensional data. They result in very-high-dimensional vectors, lead to the estimation of a large number of parameters.

Multilinear Subspace Learning employ different types of data tensor analysis tools for dimensionality reduction. Multilinear Subspace learning can be applied to observations whose measurements were vectorized and organized into a data tensor, or whose measurements are treated as a matrix and concatenated into a tensor.

Multilinear Principal Component Analysis

Historically, Multilinear Principal Component Analysis has been referred to as "M-mode PCA", a terminology which was coined by Peter Kroonenberg. In 2005, Vasilescu and Terzopoulos introduced the Multilinear PCA terminology as a way to better differentiate between linear tensor decompositions and multilinear tensor decomposition, as well as, to better differentiate between analysis approaches that computed 2nd order statistics associated with each data tensor mode(axis)s, and subsequent work on Multilinear Independent Component Analysis that computed higher order statistics associated with each tensor mode/axis. MPCA is an extension of PCA.

Multilinear Independent Component Analysis

Multilinear Independent Component Analysis is an extension of ICA.

Multilinear Linear Descriminant Analysis

  • Multilinear extension of LDA
  • TTP-based: Discriminant Analysis with Tensor Representation (DATER)
  • TTP-based: General tensor discriminant analysis (GTDA)
  • TVP-based: Uncorrelated Multilinear Discriminant Analysis (UMLDA)
  • Multilinear canonical correlation analysis

  • Multilinear extension of CCA
  • TTP-based: Tensor Canonical Correlation Analysis (TCCA)
  • TVP-based: Multilinear Canonical Correlation Analysis (MCCA)
  • TVP-based: Bayesian Multilinear Canonical Correlation Analysis (BMTF)
  • A TTP is a direct projection of a high-dimensional tensor to a low-dimensional tensor of the same order, using N projection matrices for an Nth-order tensor. It can be performed in N steps with each step performing a tensor-matrix multiplication (product). The N steps are exchangeable. This projection is an extension of the higher-order singular value decomposition (HOSVD) to subspace learning. Hence, its origin is traced back to the Tucker decomposition in 1960s.
  • A TVP is a direct projection of a high-dimensional tensor to a low-dimensional vector, which is also referred to as the rank-one projections. As TVP projects a tensor to a vector, it can be viewed as multiple projections from a tensor to a scalar. Thus, the TVP of a tensor to a P-dimensional vector consists of P projections from the tensor to a scalar. The projection from a tensor to a scalar is an elementary multilinear projection (EMP). In EMP, a tensor is projected to a point through N unit projection vectors. It is the projection of a tensor on a single line (resulting a scalar), with one projection vector in each mode. Thus, the TVP of a tensor object to a vector in a P-dimensional vector space consists of P EMPs. This projection is an extension of the canonical decomposition, also known as the parallel factors (PARAFAC) decomposition.
  • Typical approach in MSL

    There are N sets of parameters to be solved, one in each mode. The solution to one set often depends on the other sets (except when N=1, the linear case). Therefore, the suboptimal iterative procedure in is followed.

    1. Initialization of the projections in each mode
    2. For each mode, fixing the projection in all the other mode, and solve for the projection in the current mode.
    3. Do the mode-wise optimization for a few iterations or until convergence.

    This is originated from the alternating least square method for multi-way data analysis.

    Pros and cons

    The advantages of MSL are:

  • It preserves the structure and correlation in the original data before projection by operating on natural tensorial representation of multidimensional data.
  • It can learn more compact representations than its linear counterpart. It needs to estimate a much smaller number of parameters and it has fewer problems in the small sample size scenario.
  • It can handle big tensor data more efficiently with computations in much lower dimensions than linear methods. Thus, it leads to lower demand on computational resources.
  • The disadvantages of MSL are:

  • Most MSL algorithm are iterative. They may be affected by initialization method and have convergence problem.
  • The solution obtained is local optimum.
  • Code

  • MATLAB Tensor Toolbox by Sandia National Laboratories.
  • The MPCA algorithm written in Matlab (MPCA+LDA included).
  • The UMPCA algorithm written in Matlab (data included).
  • The UMLDA algorithm written in Matlab (data included).
  • Tensor data sets

  • 3D gait data (third-order tensors): 128x88x20(21.2M); 64x44x20(9.9M); 32x22x10(3.2M);
  • References

    Multilinear subspace learning Wikipedia