From b2570cc2d3ffd1ab8f6f7fff472c9c1d8413ce46 Mon Sep 17 00:00:00 2001 From: dumball11 Date: Fri, 11 Feb 2022 20:47:09 +0530 Subject: [PATCH] removing sorry spam --- demo.ipynb | 2 -- 1 file changed, 2 deletions(-) diff --git a/demo.ipynb b/demo.ipynb index 5c18eff..39467e6 100644 --- a/demo.ipynb +++ b/demo.ipynb @@ -385,7 +385,6 @@ "source": [ "%matplotlib inline\n", "from keras.preprocessing import image\n", - "# if the img.png is not one of the MNIST dataset that the model was trained on, the error will be very high.\n", "img = image.load_img(\"./hello.png\", target_size=(28, 28), color_mode = \"grayscale\")\n", "input_img = image.img_to_array(img)\n", "inputs = input_img.reshape(1,784)\n", @@ -410,7 +409,6 @@ "source": [ "%matplotlib inline\n", "from keras.preprocessing import image\n", - "# if the img.png is not one of the MNIST dataset that the model was trained on, the error will be very high.\n", "img = image.load_img(\"./1_nlfLUgHUEj5vW7WVJpxY-g.png\", target_size=(28, 28), color_mode = \"grayscale\")\n", "input_img = image.img_to_array(img)\n", "inputs = input_img.reshape(1,784)\n",