from sklearn import svm >>> X = [[0, 0], [1, 1]] >>> y = [0, 1] >>> clf = svm.SVC() >>> clf.fit(X, y) SVC(). 模型进行拟合后,可用于预测新数据: > ...
確定! 回上一頁