introduction

Singular Value Thresholding (SVT) is an algorithm to minimize the nuclear norm of a matrix, subject to certain types of constraints. It has been successfully used in many matrix-completion problems (for more on the matrix completion problem, see Exact matrix completion via convex optimization by E.J. Candès and B. Recht). The SVT algorithm is described in the paper A singular value thresholding algorithm for matrix completion by J-F. Cai, E.J. Candès and Z. Shen.

The version of SVT available at this website is restricted to equality constraints of the form:

eq1.gif

However, the user can easily modify it to handle inequality constraints of the form:

eq2.gif

SVT can also work with more general constraints (e.g. any Lipschitz-continuous convex function), but for simplicity, this is not implemented in the code below.

The SVT algorithm solves the following problem:

eq5.gif

where the first norm is the nuclear norm (the sum of singular values) and the second norm is the Frobenius norm. Problem (P3), for large values of tau, is closely related to problem (P2):

eq4.gif

Problem (P2) is often used as a proxy for problem (P1), since (P1) is not convex:

eq3.gif


Please see links to the right for access to code and papers on matrix completion.
  • Above:
    Pictorial representation of the nuclear ball, i.e. 2 x 2 matrices with nuclear norm at most 1.

    navigate to: