EasyDeepLearn

Multidimensional Scaling (MDS) — variants.

medium

Answer

  • Given pairwise distance matrix D, find low-dim embedding preserving distances.
  • Classical MDS: closed form via eigendecomposition of doubly-centered D2D^{2} — equivalent to PCA on distance data.
  • Metric MDS: minimize stress = Σ (yi    yj    dij)2( \mid \mid y_{i}\; - \;y_{j} \mid \mid \; - \;d_{\mathrm{ij}})^{2}.
  • Non-metric MDS: preserves only rank order of distances.
  • Uses: psychometrics, marketing perception maps, small-n visualization.
Check yourself — multiple choice
  • Same as PCA
  • Given pairwise D, embed to preserve distances. Classical (=PCA  on  doublecentered  D2)  /  metric( = \mathrm{PCA}\;\mathrm{on}\;\mathrm{double} - \mathrm{centered}\;D^{2})\; / \;\mathrm{metric} (stress) / non-metric (rank-preserving)
  • Random
  • Not real

MDS: preserve pairwise distances; classical / metric / non-metric variants.

#dimensionality-reduction

Practise Unsupervised Learning

214 interview questions in this topic.

Related questions