Question 15
Consider the following code snippet and mark the correct output.
from sklearn.svm import SVCimport numpy as npX = np.array([[-1, -1], [-2, -2], [1, 1], [2, 2]])y = np.array([-1, -1, 1, 1])clf = SVC(kernel='linear')clf.fit(X, y)print(clf.n_support_)