python
1def plot_image(i, predictions_array, true_label, img): 2 predictions_array, true_label, img = predictions_array[i], true_label[i], img[i] 3 plt.grid(False) 4 plt.xticks([]) 5 plt.yticks([]) 6 7 plt.imshow(img, cmap=plt.cm.binary) 8 9 predicted_label = np.argmax(predictions_array) 10 if predicted_label == true_label: 11 color = 'blue' 12 else: 13 color = 'red' 14 15 plt.xlabel("{} {:2.0f}% ({})".format(num_classes[predicted_label], 16 100*np.max(predictions_array), 17 num_classes[true_label]), 18 color=color)
plt.xlabel("{} {:2.0f}% ({})".format(num_classes[predicted_label],においてTypeError: 'int' object is not subscriptableと言われたのですが、添字表記に対応していないものがどれなのかわかりません。申し訳ありませんが、よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/01/02 17:04
2020/01/02 17:22 編集
2020/01/02 17:30 編集
2020/01/02 17:31
2020/01/02 17:39
2020/01/02 17:42
2020/01/02 17:45