Spaces:
Configuration error
Configuration error
File size: 513 Bytes
ca564f4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import tensorflow as tf
import matplotlib.pyplot as plt
def plot_accuracy(history):
plt.plot(history.history["accuracy"], label="train")
plt.plot(history.history["val_accuracy"], label="validation")
plt.legend()
plt.show()
def plot_loss(history):
plt.plot(history.history["loss"], label="train")
plt.plot(history.history["val_loss"], label="validation")
plt.legend()
plt.show()
def process(image, label):
image = tf.cast(image / 255.0, tf.float32)
return image, label |