Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion posts/2014-07-Understanding-Convolutions/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ <h1>Understanding Convolutions</h1>
<p>If we just wanted to understand convolutional neural networks, it might suffice to roughly understand convolutions. But the aim of this series is to bring us to the frontier of convolutional neural networks and explore new options. To do that, we’re going to need to understand convolutions very deeply.</p>
<p>Thankfully, with a few examples, convolution becomes quite a straightforward idea.</p>
<h2 id="lessons-from-a-dropped-ball">Lessons from a Dropped Ball</h2>
<p>Imagine we drop a ball from some height onto the ground, where it only has one dimension of motion. <em>How likely is it that a ball will go a distance <span class="math">\(c\)</span> if you drop it and then drop it again from above the point at which it landed?</em></p>
<p>Imagine we drop a ball from some height onto the ground. The ball first has an <span class="math">\(x\)</span> coordinate <span class="math">\(x_0\)</span>. When it hits the ground, the ball rolls and reaches the position <span class="math">\(x_1\)</span>. Then we drop it again from above <span class="math">\(x_1\)</span> and the ball ends to a position <span class="math">\(x_2\)</span>. <em>How likely is it that the ball will go a given distance <span class="math">\(c\)</span>, i.e. that <span class="math">\(x_2\) - \(x_0\) = \(c\)</span>?</em></p>
<p>Let’s break this down. After the first drop, it will land <span class="math">\(a\)</span> units away from the starting point with probability <span class="math">\(f(a)\)</span>, where <span class="math">\(f\)</span> is the probability distribution.</p>
<p>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 <span class="math">\(b\)</span> units away from the new starting point is <span class="math">\(g(b)\)</span>, where <span class="math">\(g\)</span> may be a different probability distribution if it’s dropped from a different height.</p>
<div class="bigcenterimgcontainer">
Expand Down