Question
Data Science and Artificial Intelligence Question on Database Concepts
Consider the dataset with six datapoints : {(x1, y1), (x2, y2), ..., (x6, y6)}, where x1 = [1 0], x2 = [0 1], x3 = [0 −1], x4 = [−1 0], x5 = [2 2], x6 = [−2 −2] and the labels are given by y1 = y2 = y5 = 1, and y3 = y4 = y6 = -1 .A hard margin linear support vector machine is trained on the above dataset. Which ONE of the following sets is a possible set of support vectors?
A
{x1, x2, x5}
B
{x3, x4, x5}
C
{x4, x5}
D
{x1, x2, x3, x4}
Answer
{x1, x2, x3, x4}
Explanation
Solution
The correct option is (D) : {x1, x2, x3, x4}.