[SOLVED] CS代写 Support Vector Machines Questions

30 $

File Name: CS代写_Support_Vector_Machines_Questions.zip
File Size: 395.64 KB

SKU: 2023994142 Category: Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Or Upload Your Assignment Here:


Support Vector Machines Questions
1. Explain why minimizing the norm of the vector of weights maximizes the margin.
The distance of a point xn from the separating hyperplane is: tn(wT xn+w0) . The
numerator is also the constraint of the SVM for each point: tn(wT xn+w0)≥1 , which is satisfied at the equality (that is, the constraint is active) for support vectors. Therefore, we

Copyright By PowCoder代写加微信 assignmentchef

can substitute the numerator with 1, and we get that the distance of a support vector from the hyperplane is 1 . It follows that minimizing the norm of w maximizes the margin.
2. What do the constraints in the optimization problem represent?
There is one constraint per point in the dataset. Each constraint imposes that the corresponding point is on the correct side of the separating boundary, and not on the boundary itself.
3. What is the role of slack variables? What do they achieve?
The slack variables achieve a so called soft margin, because they allow some points to be on the wrong side of the classification boundary. The average distance of the misclassified points from the boundary is minimized together with the norm of w.
4. What is the difference between a soft-margin and a hard-margin svm?
A soft margin SVM, through the slack variables, allows points to be misclassified, and therefore a solution always exists. For a hard margin SVM, on the other hand, all constraints on correct classification must be fulfilled, therefore if the dataset is not linearly separable there is no hard-margin SVM able to classify that dataset.
5. Given the dataset below, determine if a hard-margin SVM can separate the classes, and, if that is the case, identify the support vectors:

Yes, the dataset is linearly separable. The point a1 and b1 are definitely support vectors, while a3 and b2 might also be.
6. Same as the question before:
This dataset is not linearly separable, therefore a hard-margin SVM cannot classify it.
7. What options do you have with support vector machines if the dataset is not linearly separable?
Soft margin with slack variables, and projecting the dataset to a higher dimensional space through a set of basis functions. The two are not mutually exclusive.
8. What is the kernel trick and what does it achieve?
The kernel trick allows us to compute the dot product of certain feature vectors much faster than by using the general definition of dot product. In the dual formulation of SVMs the input vectors, projected through a set of basis functions, only appear in dot products. Therefore, we can use very high dimensional projections (indeed even with infinite dimensions!) implicitly through the kernel trick, when computing the dot product explicitly would not be possible.
9. Why are kernels useful?
Given some initial kernel functions, that have been discovered for specific basis functions, it is possible to engineer kernels that correspond to very high dimensional projections, without ever having to explicitly compute the coordinates of the projected points. A data set that is not linearly separable in its original dimensionality, when projected to a higher dimensional space, may become linearly separable. With enough many dimensions, every dataset is linearly separable.
10. Consider the dataset: {⟨0,0,−1⟩,⟨0,1,1⟩,⟨1,0,1⟩} where the last element of each vector is the class t∈{−1,1} . We want to use a linear (non-kernel) support vector machine classifier to specify the decision boundary in the form of y(x)=wT x+w0 . Let a1, a2, a3 denote the Lagrange multipliers for the constraints on x1, x2, and x3 respectively.
1. Plot the data points and derive the decision boundary by inspecting the data. What can be said about the Lagrange multipliers?

2. Write the Lagrangian, apply the optimality conditions, and express the vector w in terms of the data points.
All three points are support vectors, since it can be easily seen that removing one would change the decision boundary. This implies that all three Lagrange multipliers are non- zero.
The write the Lagrangian we first note that the constraints in the form
ti(wT xi+w0)⩾1 can be rewritten as 1−ti(wT xi+w0)⩽0 , that is g(xi)⩽0 The
Langrangian is:
L(w,a)=12‖w‖2+a1(1−t1(wT x1+w0))+a2(1−t2(wT x2+w0))+a3(1−t3(wT x3+w0)) .
The optimality condition that allows us to express w in terms of a is ∇ w L( w , a)=0 , from which:
w−a1 t1 x1−a2 t2 x2−a3 t3 x3=0 , and therefore:
. To compute w0 we can use the constraint of any support vector (so in this case any of the three points), for instance:
w=−a1⟨0,0⟩+a2⟨0,1⟩+a3⟨1,0⟩
wT⟨0,1⟩+w0=1 from which: w0=1−wT ⟨0,1⟩
11. Consider the dataset: {⟨−1,0,−1⟩,⟨1,0,1⟩,⟨2,0,1⟩} . Compute the value of the three Lagrange multipliers corresponding to each point.
I’ll denote the weight vector with wa=⟨w0 , w1 , w2⟩ , and the gradient of the decision boundary with w=⟨w1 ,w2⟩ . The third point is not a support vector, therefore λ3=0 . If we plot the dataset, it is clear that the optimal decision boundary has equation x=0 , therefore the corresponding weight vector is wa=⟨0,1,0⟩ , or any vector parallel to it, that is, that can be obtained by it through a multiplication by a constant c. For instance, the vector ⟨0,2,0⟩ would give the same decision boundary, since it corresponds to the equation 2 x =0 .
We first need to identify this constant by looking at any constraint corresponding to a support vector, for example, for the first point:
1+((c 0)(−1))=0 , 0
which leads to c=1 , and therefore no scaling of the weight vector is necessary (since multiplying all its elements by 1 changes nothing).
We know from the previous question, that the application of the optimality condition leads to the expression of the vector of weights in terms of the support vectors and the classes:
w=−λ1⟨−1,0⟩+λ2⟨1,0⟩ .
We also know that by applying the optimality condition on the derivative with respect to
w0 (see slide 7 in deck SVM part 3) we obtain:
−λ1+λ2+λ3=0 . Since λ3=0 We then have two equations in two unknowns and can solve for the Lagrange multipliers:

{λ1+λ2=1 −λ1+λ2=0
From which λ1=0.5 ,λ2=0.5 and we already knew that λ3=0
12. Consider the dataset: {⟨−1,0,−1⟩,⟨1,0,1⟩,⟨2,0 ,−1⟩} , that is, the same as the previous question, with class of the last point inverted. This dataset is not linearly separable, therefore we need to introduce slack variables. Assuming that the decision boundary is still x=0 , what is the value of the slack variables ξ1 ,ξ2 ,ξ3 , corresponding to each point?
The first and second point are on the correct side of the decision boundary, therefore: ξ1=0,ξ2=0 . For the third point, we can compute its slack variable from the constraint
ti(wT xi+w0)⩾1−ξi ,which for the third point gives the minimum value of ξ3 as:
− 1 ( ( 1 0 ) ( 20 ) ) = 1 − ξ 3 .
We obtain ξ3=3 . Note that this is exactly the distance between x1 and x3, that is, between
x3 and the margin of the side it belongs to, since the norm of w is 1 (see slide 8 in the deck SVM part 2).

程序代写 CS代考加微信: assignmentchef QQ: 1823890830 Email: [email protected]

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[SOLVED] CS代写 Support Vector Machines Questions
30 $