Starting from:
$30

$24

Homework 6 (Week 10)

    1. This problem is to be done by hand. In the parts below, you will set up the primal Lagrangian and derive the dual Lagrangian, for support vector machine classifier, for the case of data that is linearly separable in expanded feature space.

For the SVM learning, we stated the optimization problem as:


Minimize J (w) = 12 w2

s.t. zi (wT ui + w0 )−1 ≥ 0 ∀i

Assume our data is linearly separable in the expanded feature space. Also, nonaugmented notation is used throughout this problem.

    (a) If the above set of constraints (second line of equations above) is satisfied, will all the training data be correctly classified?

    (b) Write the Lagrangian function L(w, w0 , λ ) for the minimization problem stated above.  Use

λi , i = 1, 2, !, N  for the Lagrange multipliers.    Also state the KKT conditions.    (Hint:
there are 3 KKT conditions).

    (c) Derive the dual Lagrangian LD , by proceeding as follows:

        (i) Minimize L  w.r.t. the weights.



p. 1 of 4
Hint: solve ∇w L = 0 for the optimal weight w * (in terms of λi  and other variables);
and set    ∂L = 0 and simplify.

∂w0

    (ii) Substitute  your  expressions  from  part  (i)  into  L ,  and  use  your  expression  from
    • L = 0 as a new constraint, to derive LD as:
∂w0





1
N  N








T u


N


L
λ

= −


λ
λ

z
z

u


+

λ




















D (

)
2
∑∑
i

j
i

j


i


j



i


























i=1 j=1













i=1


N
subject to the (new) constraint:    ∑λi zi = 0 , which becomes a new KKT condition.

i=1

Also give the other two KKT conditions on λi , which carry over from the primal form.


    2. In this problem you will do SVM learning on a small set of given data points, using the result from Problem 1 above. Problem 2 also uses nonaugmented notation.

Coding. This problem involves some work by hand, and some solution by coding. As in previous homework assignments, in this problem you are required to write the code yourself; you may use Python built-in functions, NumPy, and matplotlib; and you may use pandas only for reading and/or writing csv files. For the plotting, we are not supplying plotting function(s) for you; may use this as an opportunity to (learn, explore, and) use matplotlib functions as needed. Alternatively, you may do the plots by hand if you prefer.

Throughout this problem, let the dataset have = 3 points. We will work entirely in the expanded feature space ( -space).

        (a) Derive by hand a set of equations, with λ, as variables, and !, !,     = 1,2,3 as given constants, that when solved will give the SVM decision boundary and regions. To do this,
start  the
Lagrangian  process  to  optimize
LD
w.r.t.
λ
and   ,  subject  to  the  equality

N










constraint ∑λi zi
= 0 . Set all the derivatives equal to 0 to obtain the set of equations.

i=1






















N
1
N  N




T




N


Hint: Start from
LD′ (
λ
, µ) = ∑λi −

∑∑λiλ j ziz j
u
i

u
j

+ µ
∑ziλi
, in which the




2





























i=1












i=1








i=1 j=1












last term has been added to incorporate the equality constraint stated above.

Finally, formulate your set of equations as a matrix-vector equation of the form:
A ρ = b


p. 2 of 4
in which ρ = 0λ",  µ2". Give your expressions for A and b.

Tip: If you’d like a quick check to see if you’re on the right track, try plugging in (by hand)

for this simple dataset:

= 305,
$
=305∈
=
= 1

%
= 315 ∈   (   = −1).
#
1

0
#  ( #
$
);


1
$   %
The first row of    should be [1   0  − 1  − 1] and first entry of    should be 1.

In the parts below you will use a computer to solve this matrix equation for λ and µ, calculate then plot and interpret the results, for 3 different datasets.
For parts (b)-(e) below, use the following dataset:
= 315,    = 325 ∈
#    2    $    1    #
0
%=305 ∈ $
For all parts below, consider    # to be the positive class ( ! = +1).

    (b) Write code in Python to solve for λ and µ, calculate ∗ and ' , and check the KKT conditions.

Tip: Use variables !,   !,  i = 1,2,3 such that you can input their values for different datasets.

Specifically, the code should:
        (i) Use NumPy to invert your matrix, and to calculate the resulting values for λ and µ.
        (ii) Check that the resulting λ satisfies the KKT conditions involving λ (but not involving ) that you stated in Problem 1(c)(ii).

        (iii) Calculate the optimal (nonaugmented) weight vector ∗ by using your result from Problem 1(c)(i). And, find the optimal bias term ' using one of the KKT conditions from Problem 1(b).

        (iv) Check that the resulting and ' satisfy the KKT conditions on and ' of Pr. 1(c).

        (v) Output the results of (i)-(iv) above.

    (c) Run your code on the given dataset; give the resulting values for λ and µ, and the results of the KKT-conditions check on λ .

Also give the resulting   ∗ and   ', and the results of the KKT-conditions check onand
'.
    (d) Plot in 2D nonaugmented feature ( ) space: the data points showing their class labels, the decision boundary defined by ∗ and ', and an arrow showing which side of the boundary

            p. 3 of 4
is class #. While you are encouraged to do (some or all of) the plot by computer, you can do some or all of it by hand if you prefer, as long as it is neat and reasonably accurate.

    (e) Looking at the plot, does the decision boundary correctly classify the training data?

And if yes, does it look like the maximum-margin boundary that will correctly classify the data? Briefly justify.

(f)(i)-(iii)    Repeat parts (c) – (e) except for the following dataset:
= 315,    = 325 ∈
#    2    $    1    #
1
%′=315 ∈ $

in which the third data point has been changed.

        (iv) Explain the change, or lack of change, in the decision boundary from (d) to (f).

    (g) (i) How do you think the boundary will change (relative to (f)) if we instead use the following data:
= 315,    = 325 ∈
#    2    $    1    #
0
%′′ = 31.55 ∈    $
in which the third data point has (yet again) been changed? (ii)-(iv) Try it by repeating (c)-(e) except with these data points1.
    (v) Explain any change or lack of change in the decision boundary as compared with (d) and (f).

    • Tip: Note that the linear algebra approach we take to solve this problem, has no way of enforcing the requirement ! ≥ 0  ∀   . After you check this requirement, if any data point ( has ( < 0 , then you can set ( = 0 as a given constant, and then re-optimize the other Lagrange multipliers. Then check the KKT conditions again to verify they are satisfied.

Why? With no nonnegativity condition on , the optimal solution effectively finds a point that is on the boundary of all inequality constraint regions (as in case (b) of Lecture 12 p. 10). If one of the constraints (say on data point () is already satisfied (as in case (a) on p. 9), it proceeds as in case (b) to find a point on the boundary of the constraint region, which results in a negative Lagrange multiplier ( < 0. Resetting it to 0, then re-optimizing the other parameters, is a way of enforcing the ( ≥ 0 requirement.

Comment: this method of implementation (Pr. 2 using matrix inverse) is useful for working with algebraic expressions, theory, and seeing/verifying how things work. For larger datasets, typically other implementation methods are used such as quadratic programming or variations on gradient descent designed for this type of optimization.





p. 4 of 4

More products