Update 04_mnist_basics.ipynb

This commit is contained in:
Eduard 2020-08-26 15:31:40 +02:00 committed by GitHub
parent efff9626b0
commit c2af0bba5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1367,7 +1367,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"You can see that the background white pixels are stored as the number 0, black is the number 255, and shades of gray are between the two. The entire image contains 28 pixels across and 28 pixels down, for a total of 768 pixels. (This is much smaller than an image that you would get from a phone camera, which has millions of pixels, but is a convenient size for our initial learning and experiments. We will build up to bigger, full-color images soon.)\n",
"You can see that the background white pixels are stored as the number 0, black is the number 255, and shades of gray are between the two. The entire image contains 28 pixels across and 28 pixels down, for a total of 784 pixels. (This is much smaller than an image that you would get from a phone camera, which has millions of pixels, but is a convenient size for our initial learning and experiments. We will build up to bigger, full-color images soon.)\n",
"\n",
"So, now you've seen what an image looks like to a computer, let's recall our goal: create a model that can recognize 3s and 7s. How might you go about getting a computer to do that?\n",
"\n",