From cbb6618634b5e8fc114044f6ecf329404cd9a504 Mon Sep 17 00:00:00 2001 From: Tyler <41713505+Tylersuard@users.noreply.github.com> Date: Fri, 11 Sep 2020 13:14:50 -0700 Subject: [PATCH] Erased spaces on last line: final cell would not run Final cell would not run because last cell called the function inside the definition of that function. I deleted spaces, removing the function call from the definition of the function, and the last cell works now. --- tools/colab/fashion_mnist.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/colab/fashion_mnist.ipynb b/tools/colab/fashion_mnist.ipynb index 3afb852d4..ed4ed235e 100644 --- a/tools/colab/fashion_mnist.ipynb +++ b/tools/colab/fashion_mnist.ipynb @@ -312,8 +312,8 @@ " axes[x, y].imshow(images[i])\n", " axes[x, y].text(0.5, 0.5, label + '\\n%.3f' % confidence, fontsize=14)\n", "\n", - " pyplot.gcf().set_size_inches(8, 8) \n", - " plot_predictions(np.squeeze(x_test[:16]), cpu_model.predict(x_test[:16]))" + "pyplot.gcf().set_size_inches(8, 8) \n", + "plot_predictions(np.squeeze(x_test[:16]), cpu_model.predict(x_test[:16]))" ] }, {