understanding convolutions

Lessons from a Dropped Ball

Imagine we drop a ball from some height onto the ground, where it only has one dimension of motion. How likely is it that a ball will go a distance $c$ if you drop it and then drop it again from above the point at which it landed?

Let’s break this down. After the first drop, it will land aa units away from the starting point with probability $f(a)$, where $f$ is the probability distribution.

Now after this first drop, we pick the ball up and drop it from another height above the point where it first landed. The probability of the ball rolling $b$ units away from the new starting point is $g(b)$, where $g$ may be a different probability distribution if it’s dropped from a different height.

img

If we fix the result of the first drop so we know the ball went distance aa, for the ball to go a total distance cc, the distance traveled in the second drop is also fixed at bb, where $a+b=c$. So the probability of this happening is simply $f(a)⋅g(b)$.1

Let’s think about this with a specific discrete example. We want the total distance $c$ to be 3. If the first time it rolls, $a=2$, the second time it must roll $b=1$ in order to reach our total distance $a+b=3$. The probability of this is $f(2)⋅g(1)$.

img

However, this isn’t the only way we could get to a total distance of 3. The ball could roll 1 units the first time, and 2 the second. Or 0 units the first time and all 3 the second. It could go any $a$ and $b$, as long as they add to 3.

img

The probabilities are $f(1)⋅g(2)$ and $f(0)⋅g(3)$, respectively.

In order to find the total likelihood of the ball reaching a total distance of $c$, we can’t consider only one possible way of reaching $c$. Instead, we consider all the possible ways of partitioning $c$ into two drops $a$ and $b$ and sum over the probability of each way.
$$
…;; f(0)cdot g(3) ~+~ f(1)cdot g(2) ~+~ f(2)cdot g(1);;…
$$
We already know that the probability for each case of $a+b=c$ is simply $f(a)⋅g(b)$. So, summing over every solution to $a+b=c$, we can denote the total likelihood as:
$$
sum_{a+b=c} f(a) cdot g(b)
$$
Turns out, we’re doing a convolution! In particular, the convolution of $f$ and $g$, evluated at $c$ is defined:
$$
(fast g)(c) = sum_{a+b=c} f(a) cdot g(b)~~~~
$$
If we substitute $b=c−a$, we get:
$$
(fast g)(c) = sum_a f(a) cdot g(c-a)
$$
This is the standard definition2 of convolution.

To make this a bit more concrete, we can think about this in terms of positions the ball might land. After the first drop, it will land at an intermediate position aa with probability $f(a)$. If it lands at $a$, it has probability $g(c−a)$ of landing at a position $c$.

img

To get the convolution, we consider all intermediate positions.

img

Visualizing Convolutions

There’s a very nice trick that helps one think about convolutions more easily.

First, an observation. Suppose the probability that a ball lands a certain distance $x$ from where it started is $f(x)$. Then, afterwards, the probability that it started a distance $x$ from where it landed is $f(−x)$.

img

If we know the ball lands at a position $c$ after the second drop, what is the probability that the previous position was $a$?

img

So the probability that the previous position was $a$ is $g(−(a−c))=g(c−a)$.

Now, consider the probability each intermediate position contributes to the ball finally landing at $c$. We know the probability of the first drop putting the ball into the intermediate position a is $f(a)$. We also know that the probability of it having been in $a$, if it lands at $c$ is $g(c−a)$.

img

Summing over the $a$s, we get the convolution.

The advantage of this approach is that it allows us to visualize the evaluation of a convolution at a value $c$ in a single picture. By shifting the bottom half around, we can evaluate the convolution at other values of $c$. This allows us to understand the convolution as a whole.

For example, we can see that it peaks when the distributions align.

img

And shrinks as the intersection between the distributions gets smaller.

img

By using this trick in an animation, it really becomes possible to visually understand convolutions.

Below, we’re able to visualize the convolution of two box functions:

Wiki-BoxConvAnim

From Wikipedia

Armed with this perspective, a lot of things become more intuitive.

Let’s consider a non-probabilistic example. Convolutions are sometimes used in audio manipulation. For example, one might use a function with two spikes in it, but zero everywhere else, to create an echo. As our double-spiked function slides, one spike hits a point in time first, adding that signal to the output sound, and later, another spike follows, adding a second, delayed copy.

Higher Dimensional Convolutions

Convolutions are an extremely general idea. We can also use them in a higher number of dimensions.

Let’s consider our example of a falling ball again. Now, as it falls, it’s position shifts not only in one dimension, but in two.

img

Convolution is the same as before:
$$
(fast g)(c) = sum_{a+b=c} f(a) cdot g(b)
$$
Except, now $a$, $b$ and $c$ are vectors. To be more explicit,
$$
(fast g)(c_1, c_2) = sum_{begin{array}{c}a_1+b_1=c_1\a_2+b_2=c_2end{array}} f(a_1,a_2) cdot g(b_1,b_2)
$$
Or in the standard definition:
$$
(fast g)(c_1, c_2) = sum_{a_1, a_2} f(a_1, a_2) cdot g(c_1-a_1,~ c_2-a_2)
$$
Just like one-dimensional convolutions, we can think of a two-dimensional convolution as sliding one function on top of another, multiplying and adding.

One common application of this is image processing. We can think of images as two-dimensional functions. Many important image transformations are convolutions where you convolve the image function with a very small, local function called a “kernel.”

RiverTrain-ImageConvDiagram

From the River Trail documentation

The kernel slides to every position of the image and computes a new pixel as a weighted sum of the pixels it floats over.

For example, by averaging a 3x3 box of pixels, we can blur an image. To do this, our kernel takes the value $dfrac{1}{9}$ on each pixel in the box,

Gimp-Blur

Derived from the Gimp documentation

We can also detect edges by taking the values −1−1 and 11 on two adjacent pixels, and zero everywhere else. That is, we subtract two adjacent pixels. When side by side pixels are similar, this is gives us approximately zero. On edges, however, adjacent pixels are very different in the direction perpendicular to the edge.

Gimp-Edge

Derived from the Gimp documentation

The gimp documentation has many other examples.

Convolutional Neural Networks

So, how does convolution relate to convolutional neural networks?

Consider a 1-dimensional convolutional layer with inputs ${x_n}$ and outputs ${y_n}$, like we discussed in the previous post:

img

As we observed, we can describe the outputs in terms of the inputs:
$$
y_n = A(x_{n}, x_{n+1}, …)
$$
Generally, $A$ would be multiple neurons. But suppose it is a single neuron for a moment.

Recall that a typical neuron in a neural network is described by:
$$
sigma(w_0x_0 + w_1x_1 + w_2x_2 ~…~ + b)
$$
Where $x_0$, $x_1$… are the inputs. The weights, $w_0$, $w_1$, … describe how the neuron connects to its inputs. A negative weight means that an input inhibits the neuron from firing, while a positive weight encourages it to. The weights are the heart of the neuron, controlling its behavior.3 Saying that multiple neurons are identical is the same thing as saying that the weights are the same.

It’s this wiring of neurons, describing all the weights and which ones are identical, that convolution will handle for us.

Typically, we describe all the neurons in a layer at once, rather than individually. The trick is to have a weight matrix, $W$:
$$
y = sigma(Wx + b)
$$
For example, we get:
$$
y_0 = sigma(W_{0,0}x_0 + W_{0,1}x_1 + W_{0,2}x_2 …)
$$

$$
y_1 = sigma(W_{1,0}x_0 + W_{1,1}x_1 + W_{1,2}x_2 …)
$$

Each row of the matrix describes the weights connecting a neuron to its inputs.

Returning to the convolutional layer, though, because there are multiple copies of the same neuron, many weights appear in multiple positions.

img

Which corresponds to the equations:
$$
y_0 = sigma(W_0x_0 + W_1x_1 -b)
$$

$$
y_1 = sigma(W_0x_1 + W_1x_2 -b)
$$

So while, normally, a weight matrix connects every input to every neuron with different weights:
$$
W = left[begin{array}{ccccc}
W_{0,0} & W_{0,1} & W_{0,2} & W_{0,3} & …\
W_{1,0} & W_{1,1} & W_{1,2} & W_{1,3} & …\
W_{2,0} & W_{2,1} & W_{2,2} & W_{2,3} & …\
W_{3,0} & W_{3,1} & W_{3,2} & W_{3,3} & …\
… & … & … & … & …\
end{array}right]
$$
The matrix for a convolutional layer like the one above looks quite different. The same weights appear in a bunch of positions. And because neurons don’t connect to many possible inputs, there’s lots of zeros.
$$
W = left[begin{array}{ccccc}
w_0 & w_1 & 0 & 0 & …\
0 & w_0 & w_1 & 0 & …\
0 & 0 & w_0 & w_1 & …\
0 & 0 & 0 & w_0 & …\
… & … & … & … & …\
end{array}right]
$$
Multiplying by the above matrix is the same thing as convolving with $[…0, w_1, w_0, 0…]$. The function sliding to different positions corresponds to having neurons at those positions.

What about two-dimensional convolutional layers?

img

The wiring of a two dimensional convolutional layer corresponds to a two-dimensional convolution.

Consider our example of using a convolution to detect edges in an image, above, by sliding a kernel around and applying it to every patch. Just like this, a convolutional layer will apply a neuron to every patch of the image.

  1. We want the probability of the ball rolling aa units the first time and also rolling bb units the second time. The distributions $P(A)=f(a)$ and $P(b)=g(b)$ are independent, with both distributions centered at 0. So $P(a,b)=P(a)∗P(b)=f(a)⋅g(b)$.

  2. The non-standard definition, which I haven’t previously seen, seems to have a lot of benefits. In future posts, we will find this definition very helpful because it lends itself to generalization to new algebraic structures. But it also has the advantage that it makes a lot of algebraic properties of convolutions really obvious.

    For example, convolution is a commutative operation. That is, $f∗g=g∗f$. Why?


    $$
    sum_{a+b=c} f(a) cdot g(b) ~~=~ sum_{b+a=c} g(b) cdot f(a)
    $$
    Convolution is also associative. That is, $(f∗g)∗h=f∗(g∗h)$. Why?


    $$
    sum_{(a+b)+c=d} (f(a) cdot g(b)) cdot h(c) ~~=~ sum_{a+(b+c)=d} f(a) cdot (g(b) cdot h(c))
    $$

  3. There’s also the bias, which is the “threshold” for whether the neuron fires, but it’s much simpler and I don’t want to clutter this section talking about it.