Review

​The long-awaited[1] sequel to my "Six (and a half) intuitions for KL divergence" is finally here! 

Thanks to the following people for feedback: Denizhan Akar, Rudolf Laine, Simon Lermen, Aryan Bhatt, Spencer Becker-Kahn, Arthur Conmy, and anonymous members of my ARENA cohort (-:

If you want to 80-20 this post (and you already know what SVD is), then just read the "Summary" section below.

 

Summary

The SVD is a matrix decomposition , where U and V are orthogonal, and S is diagonal (with non-negative diagonal elements, which we call singular values). The six intuitions are:

1. Rotations and Scalings (geometric picture)

Orthogonal matrices  and  can be thought of as rotations of our basis, and  as a scaling of our new basis. These operations are easier to geometrically visualise than the entire operation of a matrix, with all its nuances (e.g. things like shear).

2. Best rank- Approximations

Truncating the SVD sum gives us in some sense the "best way" to approximate  as a sum of rank-1 matrices. In other words, the first few matrices in the SVD sum are the "most important parts of ".

3. Least Squares Regression

If we're trying to minimize  (either with a constraint on the norm of  or with no constraint), we can express the solution for  in terms of the SVD of . When  is constrained, it becomes most important to get the components of  right in the directions of the largest singular values of ; the smaller singular values matter less.

4. Input and Output Directions (like MLPs!)

An MLP can be thought of as a collection of neurons, where each neuron has an input direction (thought of as detecting a feature) and an output direction (outputting a result if that feature is observed).  and  are like the input and output directions (minus the nonlinearity in the middle), and furthermore each "neuron" in this case is completely independent (orthogonal).

5. Lost & Preserved Information

SVD tells you what information (if any) is lost when you use  as a linear map. It also tells you which bits of information are easier / harder to recover.

6A. Principal Component Analysis

If  is actually a matrix of data, we can interpret the SVD matrices in terms of that data.  tells you which features (= linear combinations of data) explain the most variance in the data,  tells you how large this variance is, and  tells you how much each datapoint is exposed to the corresponding feature.

6B. Information Compression

The Fourier transform is a popular choice of basis when compressing things like images (because with a few low-frequency Fourier basis vectors, we can usually reconstruct the image faithfully). We can think of SVD in a similar way, because it gives us the "best basis to use" for reconstructing our image, in some sense.

There are 2 key ideas running through most of these points:

  •  as input directions and  as the corresponding output directions (i.e. we calculate  by projecting  onto the input directions, and using these projections as coefficients for our output directions)
  • The SVD as being a way to efficiently represent the most important parts of the matrix, especially for low-rank matrices.

 

Introduction

Motivation

I'm currently doing a lot of mechanistic interpretability, and SVD is a key concept when thinking about the operations done inside transformers. Matrices like and  are very large and low-rank, making SVD the perfect tool for interpreting them. Furthermore, we have evidence that the SVD of weight matrices in transformers are highly interpretable, with the principle directions aligning with semantically interpretable directions in the residual stream.

On top of this, I think deeply understanding SVD is crucial for understanding how to think about matrices in general, and although there's a lot of valuable stuff online, it's not been brought together into a single resource. I hope I can do something similar with this post as I did with my KL divergence post.

Notation

Consider a matrix , with size . The singular value decomposition (SVD) is , where:

  • The columns of  and  are orthogonal unit vectors,
  •  is a diagonal matrix with elements  where  is the rank of matrix , and the singular values  are positive & in decreasing order: .

There are a few different conventions when it comes to SVD. Sometimes it's written with  as having sizes  respectively (in other words we pad  with zeros, and fill out  and  with a complete basis). Alternatively, the matrices can also be written with shapes , in other words the matrix  has no zero diagonal elements. I'll most often use the second convention, but there are times when I'll use the first (it should be clear which one I'm using at any given time).

Lastly, note that we can also write  as follows: 

 in other words as a sum of rank-1 matrices, scaled by the singular values. I claim this is the most natural way to think about SVD, and it's the form I'll be using for most of the rest of the post. For convenience, I'll refer to this as the "SVD sum".

 

6 ½ Intuitions

Note that there's a lot of overlap between some of these points, and some of them cut a lot closer to the "core of SVD" than others. You might say that they're . . . not linearly independent, and have different singular values. (I make no apologies for that pun.)

 

1. Rotations and Scalings (geometric picture)

Orthogonal matrices  and  can be thought of as rotations of our basis, and  as a scaling of our new basis. These operations are easier to geometrically visualise than the entire operation of a matrix, with all its nuances (e.g. things like shear).

 and  are orthogonal matrices, meaning that their column vectors  and  are orthogonal unit vectors. We can think of them as rotations in high-dimensional space (in fact, any orthogonal matrix can be formed via a series of rotations, and possibly a reflection).  is a diagonal matrix, which means it scales input along the standard basis.

The key point here is that we're taking , a general linear operation which it's hard to get geometric intuition for, and breaking it up into a series of operations which are much easier to visualise. Let's take possibly the simplest example of a non-trivial matrix operation: a shear.

The illustration below shows how this can be broken down as a rotation, scaling along the standard basis, then another rotation. See here for the animated version.

 

2. Best Low-Rank Approximations

Truncating the SVD sum gives us in some sense the "best way" to approximate  as a sum of rank-1 matrices. In other words, the first few matrices in the SVD sum are the "most important parts of ".

One natural way to formalise "best approximation"  would be the matrix which minimises the value , where  is some reasonable choice for the norm of a matrix. For example, you might use:

  •  The Spectral norm,  
  • The Frobenius norm

As it happens, the choice  minimises the residual  for both of these norms (subject to the restriction that  can have at most rank ). This is called the Eckart-Young Theorem.[2] You can find a sketch of both proofs in the appendix.

Note - the proof relies heavily on the following lemmas:

  • The spectral norm of a matrix is its largest singular value.
  • The squared Frobenius norm of a matrix equals the sum of its squared singular values.

This actually hints at an important meta point in linear algebra - important concepts like Frobenius norm, trace, determinant, etc. often make a lot more sense when they're defined in terms of the matrix when viewed as a linear map[3], rather than when viewed as a grid of numbers. In this case, defining the Frobenius norm as the sum of squared singular values in SVD was a lot more natural than describing it as the sum of squared elements (it's arguably easier to see how the former definition captures some notion of the "size" of the matrix). To give another example, it's often more natural to describe the trace as the sum of eigenvalues than the sum of diagonal elements (it's quite easy to prove the latter if you start from the former). For more on this meta point, see this section of Neel Nanda's linear recorded algebra talk.

Key idea - the singular vectors corresponding to the largest singular values are the best way of efficiently capturing what the matrix  is actually doing. If you capture most of the large singular values, then you've explained most of the operation of matrix  (the residual linear transformation is pretty small).

 

3. Least Squares Regression

If we're trying to minimize  (either with a constraint on the norm of  or with no constraint), we can express the solution for  in terms of the SVD of . When  is constrained, it becomes most important to get the components of  right in the directions of the largest singular values of ; the smaller singular values matter less.

Firstly, let's take the least squares expression:

and substitute in the singular value decomposition of . Spectral norm is unchanged when you perform unitary maps, so:

where:

  •  are the components of  in the basis created from the columns of 
  •  are the components of  in the basis created by columns of 

When written in this form, we can read off a closed-form expression for the solution: 

 where  is the component of  along the -th column of , and  is the component of  along the -th column of . This result suggests the following terminology[4], which we'll use from here on out:

  • the columns of  are the input directions of the matrix ,
  • the rows of  are the corresponding output directions.

The problem of least squares regression then reduces to a simple one: make sure the components of  along the input directions match up with the corresponding target output directions.

What about constrained optimization? Suppose we were trying to minimize  subject to the restriction . We can write the solution in this case as , where  is the smallest possible non-negative real number s.t. .[5] Note that, the larger the singular values  are, the closer our coefficient  is to the "unconstrained optimal value" of . In other words, the larger singular values are more important, so in a constrained optimization we care more about the components of  along the more important input directions .[6]

A general point here - least squares isn't an easy problem to solve in general, unless we have SVD - then it becomes trivial! This is a pretty clear sign that SVD is in some sense the natural form to write a matrix in.

 

4. Input and Output Directions (like MLPs!)

An MLP can be thought of as a collection of neurons, where each neuron has an input direction (thought of as detecting a feature) and an output direction (outputting a result if that feature is observed).  and  are like the input and output directions (minus the nonlinearity in the middle), and furthermore each "neuron" in this case is completely independent (orthogonal).

As we touched on in the previous point, the columns of  can be thought of as input directions for , and the columns of  are the output directions. This is actually quite similar to how MLPs work! A simple MLP (ignoring biases) is structured like this: 

 where  is a nonlinear function which acts element-wise (e.g. ReLU) and  are the input and output weight matrices respectively. We can write this as a sum over neurons: 

 in other words, each neuron  has an associated input direction  and an output direction , and we get the output of the MLP by projecting  along the input direction, ReLUing the results, and using this as our coefficient for the output vector.

Compare this to SVD. We can write , so we have: 

 in other words, we calculate the output of  when put through the linear map  by projecting it along each of the input directions , multiplying by scale factors , and using this as our coefficient for the output vector .

The main differences between SVD in this form and MLPs are:

  • MLPs are nonlinear thanks to their ReLU function. SVD is entirely linear.
  • In MLPs, it's common to have more neurons than dimensions of the input (e.g. in transformers, we usually have 4x more). This means some pairs of neurons are certain to have non-orthogonal input or output directions. In contrast, not only does SVD have , but every pair of input and output directions is guaranteed to be orthogonal. Furthermore, if most singular values are zero (as is the case for large low-rank matrices like ), then  will be much smaller than .

These two points help explain why we might expect the SVD of the transformation matrices  to be highly interpretable. Note that we can also view SVD as a way of trying to tackle the "lack of privileged basis" problem - just because the standard basis isn't privileged doesn't mean there can't exist directions in the space which are more meaningful than others, and SVD can be thought of as a way to find them.

 

5. Lost & Preserved Information

SVD tells you what information (if any) is lost when you use  as a linear map. It also tells you which bits of information are easier / harder to recover.

For any vector , we can write  (where  are the columns of ). Then, we have: 

 So the singular values  tell how much we scale the component of  in the -th input direction . If  then that component of  gets deleted. If  is very close to zero, then that information gets sent to very-near-zero, meaning it's harder to recover in some sense.

This is why doing line plots of the spectra for transformer weight matrices can be quite informative. Often, the largest singular values will dominate, and the rest of them will be pretty small. Take the example below, of the size (1024, 768). Even though the rank of the matrix is technically 768, we can see from the singular values that the matrix is "approximately singular" after a much smaller number of singular values.

SVD of GPT2-small

Another way of describing this concept is with pseudo-inverses. We say that matrix  is a left-inverse of  if its shape is the transpose of , and . If this is impossible (e.g.  has size  with ) then we can still choose  to get as close as possible to this:

In this case, we call  the "pseudo left-inverse" of .

What does this look like in SVD? If  (where  is the version with all positive diagonal values), then we have  as our pseudo left-inverse. We can see that, for singular values  close to zero,  will be in danger of blowing up.

 

6A. Principal Component Analysis

If  is actually a matrix of data, we can interpret the SVD matrices in terms of that data.  tells you which features (= linear combinations of data) explain the most variance in the data,  tells you how large this variance is, and  tells you how much each datapoint is exposed to the corresponding feature.

Suppose  is a matrix of (centered) data, with size  - i.e. there are  datapoints, and each datapoint has  features. The rows are the datapoints, the columns are the feature vectors. The empirical covariance matrix is given by , i.e.  is the estimated covariance of features  and  in the data. When writing this in SVD, we get: 

 This is just  with respect to the basis of . Conclusion - the columns of  (which we also call the principal components) are the directions in feature space which have the highest variance, and the (scaled) squared singular values are that variance. Also, note that  is a diagonal matrix (with diagonal entries ); this tells us that the "singular features" found in  have zero covariance, i.e. they vary independently.

How does  fit in here? Well, , so each element of the vector  is the dot product of a row of data with the feature loadings for our -th "singular feature" (scaled by the standard deviation of that feature). From here, it's not a big leap to see that the -th column of  is the exposure of each datapoint in our matrix to the -th singular feature.

Note that SVD gives us strictly more information than PCA, because PCA gives us the matrix  but not . This is another illustration of the "SVD is the natural matrix form" idea - when you put a matrix into SVD, other things fall out!

 

6B. Information Compression

The Fourier transform is a popular choice of basis when compressing things like images (because with a few low-frequency Fourier basis vectors, we can usually reconstruct the image faithfully). We can think of SVD in a similar way, because it gives us the "best basis to use" for reconstructing our image, in some sense.

Suppose we wanted to transmit an image with perfect fidelity. This requires sending  information (the number of pixels). A more common strategy is to take the discrete Fourier transform of an image, and then only send the first few frequencies. This is effective for 2 main reasons:

  • The Fourier transform is computationally efficient to calculate,
  • Most images are generally quite continuous, and so low-frequency Fourier basis terms work well for reconstructing them.

But what if we didn't care about efficiency of calculation, and instead we only wanted to minimize the amount of information we had to transmit? Would the Fourier transform always be the best choice? Answer - no, the SVD is provably the best choice (subject to some assumptions about how we're quantifying "best", and "information").[7]

The algorithm is illustrated below. Algebraically, it's the same as the "best rank-approximation" formula. We flatten every image in our dataset, stack them horizontally, and get a massive matrix of data. We then perform SVD on this massive matrix.

What's interesting about this is that we can gain insight into our data  by examining the matrices  and . For instance, if we take the first few columns of  (the "output directions") and reshape them into images of shape (width, height), then we get the "eigenvectors[8] of our images". Doing this for images of human faces is often called an eigenface, and for a long time it was used in facial recognition software.

Here are the first 8 eigenfaces of an example faces dataset (link here), i.e. the first 8 columns of  reshaped into images:

First 8 singular directions of eigenfaces

This is pretty cool! We're basically getting versions of the "general shape of a human face". The first few capture broad patterns of shading & basic features, while the later ones capture features such as lips, eyes and shadows in more detail.

If we wanted to compress a face image into a small number of dimensions and transmit it, we might find the projections of our face along the first few "eigenfaces". To make this more concrete, for an image  of shape (width, height), we might flatten this into a vector of length , then calculate the -dimensional vector  (which is equivalent to finding the projections of  along the first  columns of ), and then reconstruct by multiplying by .

If we wanted to generate a completely new face from scratch, we could choose a feature vector (i.e. some unit vector in -dimensional space), and then map it through . This would give you a face which has "exposure to the -th eigenface" equal to the -th element of your chosen feature vector.

 

Final Thoughts

Recapping these, we find that the SVD:

  1. Is a decomposition of complicated linear operations into simpler components (rotations and scalings),
  2. Allows us to best approximate a matrix with one of smaller rank,
  3. Is the natural way to express solutions to least-squares type equations,
  4. Gives us a set of independent input and output directions which fully describe the linear transformation,
  5. Tells us what information gets lost and what gets preserved by the linear transformation,
  6. Has a natural interpretation when our matrix is a data matrix (for example, when each datapoint is a flattened image - eigenfaces!).

 

Appendix - First-Principles Proof of SVD

First, a quick rant. It bugs me how almost all the proofs of SVD use the spectral theorem or some variant. This seems like massive overkill to me, when there's actually a very elegant proof which just uses some basic calculus, and also gets to the essence of SVD in a way that the spectral theorem-based proofs just don't. For that reason, I'm including this proof in the post.

Sketch of proof

Our proof involves choosing  sequentially, until we've spanned all of . At each step, we find unit vector  to maximize , subject to  being orthogonal to our previously chosen vectors. Then we define  and . The only non-trivial part of our proof will be showing that  are orthogonal to each other. This will involve a short geometric argument.

Actual proof

We'll sequentially choose , using the following algorithm:

  • We define  subject to the restriction  for all 
  • We define  and .

Most of the properties of SVD are already proved from this algorithm. By our definition,  are orthogonal unit vectors,  are unit vectors, and  are strictly positive & non-increasing (because each  is chosen with more restrictions than the previous one). The algorithm terminates when  for all possible choices of , at which point the -vectors we've chosen so far must span the domain of , and we're done. The only thing left is to show that the -vectors are orthogonal.

Suppose , and so . We can define the function . We know that  was chosen to maximise  subject to orthogonality with the other -vectors, which means (since  is also orthogonal to the other -vectors) that  must be a stationary point of the function . But if we Taylor-expand  around