, , , ,

[SOLVED] Cs7643: deep learning homework 1

$25

File Name: Cs7643__deep_learning_homework_1.zip
File Size: 301.44 KB

5/5 - (1 vote)

1. (3 points) We often use iterative optimization algorithms such as Gradient Descent to find w
that minimizes a loss function f(w). Recall that in gradient descent, we start with an initial
value of w (say w(1)) and iteratively take a step in the direction of the negative of the gradient
of the objective function i.e.
w(t+1) = w(t) − η∇f(w(t)
) (1)
for learning rate η > 0.In this question, we will develop a slightly deeper understanding of this update rule, in particular for minimizing a convex function f(w). Note: this analysis will not directly carry over
to training neural networks since loss functions for training neural networks are typically not
convex, but this will (a) develop intuition and (b) provide a starting point for research in
non-convex optimization (which is beyond the scope of this class).Recall the first-order Taylor approximation of f at w(t)
:
f(w) ≈ f(w(t)
) + hw − w(t)
, ∇f(w(t)
)i (2)
When f is convex, this approximation forms a lower bound of f, i.e.
f(w) ≥ f(w(t)
) + hw − w(t)
, ∇f(w(t)
)i
| {z }
affine lower bound to f(·)
∀w (3)Since this approximation is a ‘simpler’ function than f(·), we could consider minimizing the
approximation instead of f(·). Two immediate problems: (1) the approximation is affine (thus
unbounded from below) and (2) the approximation is faithful for w close to w(t)
.To solve
both problems, we add a squared `2 proximity term to the approximation minimization:
argmin
w
f(w(t)
) + hw − w(t)
, ∇f(w(t)
)i
| {z }
affine lower bound to f(·)
+
λ
2
|{z}
trade-offw − w(t)2
| {z }
proximity term
(4)Notice that the optimization problem above is an unconstrained quadratic programming problem, meaning that it can be solved in closed form (hint: gradients).
What is the solution w∗ of the above optimization? What does that tell you about the gradient
descent update rule? What is the relationship between λ and η?2. (3 points) Let’s prove a lemma that will initially seem devoid of the rest of the analysis but
will come in handy in the next sub-question when we start combining things. Specifically, the
analysis in this sub-question holds for any w?
, but in the next sub-question we will use it for
w?
that minimizes f(w).Consider a sequence of vectors v1, v2, …, vT , and an update equation of the form w(t+1) =
w(t) − ηvt with w(1) = 0. Show that:
X
T
t=1
hw(t) − w?
, vti ≤ ||w?
||2

+
η
2
X
T
t=1
||vt
||2
(5)3. (3 points) Now let’s start putting things together and analyze the convergence rate of gradient
descent i.e. how fast it converges to w?
.
First, show that for ¯w =
1
T
PT
t=1 w(t)
2
f(¯w) − f(w?
) ≤
1
T
X
T
t=1
hw(t) − w?
, ∇f(w(t)
)i (6)Next, use the result from part 2, with upper bounds B and ρ for ||w?
|| and∇f(w(t)
)respectively and show that for fixed η =
q B2
ρ
2T
, the convergence rate of gradient descent is
O(1/

T) i.e. the upper bound for f(¯w) − f(w?
) ∝ √
1
T
.
4. (2 points) Consider a objective function comprised of N = 2 terms:
f(w) = 1
2
(w − 2)2 +
1
2
(w + 1)2
(7)Now consider using SGD (with a batch-size B = 1) to minimize this objective. Specifically,
in each iteration, we will pick one of the two terms (uniformly at random), and take a step
in the direction of the negative gradient, with a constant step-size of η. You can assume η
is small enough that every update does result in improvement (aka descent) on the sampled
term.Is SGD guaranteed to decrease the overall loss function in every iteration? If yes, provide a
proof. If no, provide a counter-example.5. (4 points) In practice, writing the closed-form expression of the derivative of a loss function f
w.r.t. the parameters of a deep neural network is hard (and mostly unnecessary) as f becomes
complex. Instead, we define computation graphs and use the automatic differentiation algorithms (typically backpropagation) to compute gradients using the chain rule. For example,
consider the expression
f(x, y) = (x + y)(y + 1) (8)Let’s define intermediate variables a and b such that
a = x + y (9)
b = y + 1 (10)
f = a × b (11)
A computation graph for the “forward pass” through f is shown in Fig. 1.
Figure 1We can then work backwards and compute the derivative of f w.r.t. each intermediate variable ( ∂f
∂a ,
∂f
∂b ) and chain them together to get ∂f
∂x and ∂f
∂y .
Let σ(·) denote the standard sigmoid function. Now, for the following vector function:
f1(w1, w2) = e
e
w1+e
2w2 + sin(e
w1 + e
2w2
) (12)
f2(w1, w2) = w1w2 + σ(w1) (13)(a) Draw the computation graph. Compute the value of f at ~w = (1, 2).
(b) At this ~w, compute the Jacobian ∂f~
∂ ~w using numerical differentiation (using ∆w = 0.01).
(c) At this ~w, compute the Jacobian using forward mode auto-differentiation.
(d) At this ~w, compute the Jacobian using backward mode auto-differentiation.
(e) Don’t you love that software exists to do this for us?One important property for feed-forward network that we have discussed in class is that it must
be a directed acyclic graph (DAG). Recall that a DAG is a directed graph that contains no directed
cycles. We will study some of its properties in this question.Define G = (V, E) in which V is the set of all nodes as {v1, v2, …, vi
, …vn} and E is the set of edges
E =

ei,j = (vi
, vj ) | vi
, vj ∈ V.
A topological order of a directed graph G = (V, E) is an ordering of its nodes as {v1, v2, …, vi
, …vn}
so that for every edge (vi
, vj ) we have i < j.There are several lemmas can be inferred from the definition of DAG. One lemma is: if G is a DAG,
then G has a node with no incoming edges.
Given the above lemma, prove the following two lemmas:
6. [2 points] If the graph G is a DAG, then G has a topological ordering.
7. [2 points] If the graph G has a topological order, then G is a DAG.4 Implement and train a network on CIFAR-10
Setup Instructions: Before attempting this question, look at setup instructions here.
8. (Upto 29 points) Now, we will learn how to implement a softmax classifier, vanilla neural
networks (or Multi-Layer Perceptrons), and ConvNets.You will begin by writing the forward
and backward passes for different types of layers (including convolution and pooling), and
then go on to train a shallow ConvNet on the CIFAR-10 dataset in Python. Next you will
learn to use PyTorch, a popular open-source deep learning framework, and use it to replicate
the experiments from before.
Follow the instructions provided here.

Shopping Cart
[SOLVED] Cs7643: deep learning homework 1[SOLVED] Cs7643: deep learning homework 1
$25