Girish Mahajan (Editor)

Stress majorization

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

Stress majorization is an optimization strategy used in multidimensional scaling (MDS) where, for a set of n m-dimensional data items, a configuration X of n points in r(<<m)-dimensional space is sought that minimizes the so-called stress function σ ( X ) . Usually r is 2 or 3, i.e. the (n x r) matrix X lists points in 2- or 3-dimensional Euclidean space so that the result may be visualised (i.e. an MDS plot). The function σ is a cost or loss function that measures the squared differences between ideal ( m -dimensional) distances and actual distances in r-dimensional space. It is defined as:

Contents

σ ( X ) = i < j n w i j ( d i j ( X ) δ i j ) 2

where w i j 0 is a weight for the measurement between a pair of points ( i , j ) , d i j ( X ) is the euclidean distance between i and j and δ i j is the ideal distance between the points (their separation) in the m -dimensional data space. Note that w i j can be used to specify a degree of confidence in the similarity between points (e.g. 0 can be specified if there is no information for a particular pair).

A configuration X which minimizes σ ( X ) gives a plot in which points that are close together correspond to points that are also close together in the original m -dimensional data space.

There are many ways that σ ( X ) could be minimized. For example, Kruskal recommended an iterative steepest descent approach. However, a significantly better (in terms of guarantees on, and rate of, convergence) method for minimizing stress was introduced by Jan de Leeuw. De Leeuw's iterative majorization method at each step minimizes a simple convex function which both bounds σ from above and touches the surface of σ at a point Z , called the supporting point. In convex analysis such a function is called a majorizing function. This iterative majorization process is also referred to as the SMACOF algorithm ("Scaling by MAjorizing a COmplicated Function").

The SMACOF algorithm

The stress function σ can be expanded as follows:

σ ( X ) = i < j n w i j ( d i j ( X ) δ i j ) 2 = i < j w i j δ i j 2 + i < j w i j d i j 2 ( X ) 2 i < j w i j δ i j d i j ( X )

Note that the first term is a constant C and the second term is quadratic in X (i.e. for the Hessian matrix V the second term is equivalent to tr X V X ) and therefore relatively easily solved. The third term is bounded by:

i < j w i j δ i j d i j ( X ) = tr X B ( X ) X tr X B ( Z ) Z

where B ( Z ) has:

b i j = w i j δ i j d i j ( Z ) for d i j ( Z ) 0 , i j

and b i j = 0 for d i j ( Z ) = 0 , i j

and b i i = j = 1 , j i n b i j .

Proof of this inequality is by the Cauchy-Schwarz inequality, see Borg (pp. 152–153).

Thus, we have a simple quadratic function τ ( X , Z ) that majorizes stress:

σ ( X ) = C + tr X V X 2 tr X B ( X ) X C + tr X V X 2 tr X B ( Z ) Z = τ ( X , Z )


The iterative minimization procedure is then:

  • at the kth step we set Z X k 1
  • X k min X τ ( X , Z )
  • stop if σ ( X k 1 ) σ ( X k ) < ϵ otherwise repeat.
  • This algorithm has been shown to decrease stress monotonically (see de Leeuw).

    Use in graph drawing

    Stress majorization and algorithms similar to SMACOF also have application in the field of graph drawing. That is, one can find a reasonably aesthetically appealing layout for a network or graph by minimizing a stress function over the positions of the nodes in the graph. In this case, the δ i j are usually set to the graph-theoretic distances between nodes i and j and the weights w i j are taken to be δ i j α . Here, α is chosen as a trade-off between preserving long- or short-range ideal distances. Good results have been shown for α = 2 .

    References

    Stress majorization Wikipedia