“Name SVC ist nicht definiert” Code-Antworten

Scikit lernen 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

Name SVC ist nicht definiert

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

Ähnliche Antworten wie “Name SVC ist nicht definiert”

Fragen ähnlich wie “Name SVC ist nicht definiert”

Weitere verwandte Antworten zu “Name SVC ist nicht definiert” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen