Commit c4b76865 authored by Pascal Wullschleger's avatar Pascal Wullschleger
Browse files

Work on CNN blood cell classificaiton exercise

parent 7334840a
Showing with 683 additions and 138 deletions
+683 -138
......@@ -2,8 +2,8 @@ import matplotlib.pyplot as plt
def show_history_plots_of_trained_model(history, fill_between=True):
acc = history.history["accuracy"]
val_acc = history.history["val_accuracy"]
acc = history.history["sparse_categorical_accuracy"]
val_acc = history.history["val_sparse_categorical_accuracy"]
loss = history.history["loss"]
val_loss = history.history["val_loss"]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment