from sklearn import svm >>> X = [[0, 0], [1, 1]] >>> y = [0, 1] >>> clf = svm.SVC() >>> clf.fit(X, ... SVM的决策函数依赖于训练数据的一个子集,称为支持向量。
確定! 回上一頁