Created
August 29, 2021 15:21
-
-
Save bartubozkurt/cf89c5e753974a9e673a1d54f16672fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def plot_image(i, predictions_array, true_label, img): | |
true_label, img = true_label[i], img[i] | |
plt.grid(False) | |
plt.xticks([]) | |
plt.yticks([]) | |
plt.imshow(img, cmap=plt.cm.binary) | |
predicted_label = np.argmax(predictions_array) | |
if predicted_label == true_label: | |
color = 'blue' | |
else: | |
color = 'red' | |
plt.xlabel("{} {:2.0f}% ({})".format(class_names[predicted_label], | |
100*np.max(predictions_array), | |
class_names[true_label]), | |
color=color) | |
def plot_value_array(i, predictions_array, true_label): | |
true_label = true_label[i] | |
plt.grid(False) | |
plt.xticks(range(10)) | |
plt.yticks([]) | |
thisplot = plt.bar(range(10), predictions_array, color="#777777") | |
plt.ylim([0, 1]) | |
predicted_label = np.argmax(predictions_array) | |
thisplot[predicted_label].set_color('red') | |
thisplot[true_label].set_color('blue') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment