“Имя SVC не определено” Ответ

Scikit Learn Svm

from sklearn import svm
X = [[0, 0], [1, 1]]
y = [0, 1]
clf = svm.SVC()
clf.fit(X, y)
clf.predict([[2., 2.]])
Determined Dotterel

Имя SVC не определено

Z = svc_classifier.predict(X_plot)
Z = Z.reshape(xx.shape)
plt.figure(figsize=(15, 5))
plt.subplot(121)
plt.contourf(xx, yy, Z, cmap=plt.cm.tab10, alpha=0.3)
plt.scatter(X[:, 0], X[:, 1], c=y, cmap=plt.cm.Set1)
plt.xlabel('Sepal length')
plt.ylabel('Sepal width')
plt.xlim(xx.min(), xx.max())
plt.title('Support Vector Classifier with linear kernel')
SaiSowmya Dammavalam

Ответы похожие на “Имя SVC не определено”

Вопросы похожие на “Имя SVC не определено”

Больше похожих ответов на “Имя SVC не определено” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования