我正在研究塞巴斯蒂安·拉什卡(Sebastian Rashka)的德语书籍“ Python机器学习”。 我在Windows机器上使用anaconda和spyder(包括ipython控制台)。
在第3章中,他依赖于基于“ Perzeptron模型”的算法。 按照作者的指示,代码应如下:
from sklearn.metrics import accuracy_score
print('Korrektklassifizierungsrate: %.2f' % accuracy_score(y_test, y_pred))
from matplotlib.colors import ListedColormap
def plot_decision_region(X, y, classifier, resolution=0.02):
# Markierungen und Farben einstellen
markers = ('s', 'x', 'o', '^', 'v')
colors = ('red', 'blue', 'lightgreen', 'gray', 'cyan')
cmap = ListedColormap(colors[:len(np.unique(y))])
#Plotten der Entscheidungsgrenze
x1_min, x1_max = X[:, 0].min() - 1, X[:, 0].max() + 1
x2_min, x2_max = X[:, 1].min() - 1, X[:, 1].max() + 1
xx1, xx2 = np.meshgrid(np.arange(x1_min, x1_max, \
resolution), np.arange(x2_min, x2_max, resolution))
Z = classifier.predict(np.array([xx1.ravel(), \
xx2.ravel()]).T)
Z = Z.reshape(xx1.shape)
plt.contourf(xx1, xx2, Z, alpha=0.4, cmap=cmap),
plt.xlim(xx1.min(), xx1.max())
plt.ylim(xx2.min(), xx2.max())
#Plotten aller Exemplare
for idx, cl in enumerate(np.unique(y)):
plt.scatter(x=X[y == cl, 0], y=X[y == cl, 1],
alpha=0.8, c=cmap(idx),
marker=markers[idx], label=cl)
#Exemplare der Testdatenmenge hervorheben
if test_idx:
X_test, y_test = X[test_idx, :], y[test_idx]
plt.scatter(X_test[:, 0], X_test[:, 1], c='',
alpha=1.0, linewidths=1, marker='o' s=55, label='test set')
X_combined_std = np.vstack((X_train_std, X_test_std))
y_combined = np.hstack((y_train, y_test))
plot_decision_regions(X=X_combined_std,
y=y_combined,
classifier=ppn,
test_idx=range(105,150))
plt.xlabel('Länge des Blütenblatts [standardisiert]')
plt.ylabel('Breite des Blütenblatts [standardisiert]')
plt.legend(loc='upper left')
plt.show()
**File "<ipython-input-1-e576c1f255dd>", line 19
plt.contourf(xx1, xx2, Z, alpha=0.4, cmap=cmap),
^
IndentationError: unexpected indent**
因此,我不确定默认值是多少。如果有人可以帮助我,我真的很想了解错误,并会感激不尽。可能与方程cmap = cmap有关吗?
问候 费利克斯
答案 0 :(得分:0)
从19到21的缩进线。
Z = Z.reshape(xx1.shape)
plt.contourf(xx1, xx2, Z, alpha=0.4, cmap=cmap),
plt.xlim(xx1.min(), xx1.max())
plt.ylim(xx2.min(), xx2.max())