Open github-learning-lab[bot] opened 4 years ago
TRUE
Sorry! 😭 "TRUE " is not the right answer. The correct answer is: "FALSE" Leave a comment with the right answer to continue.😄
TRUE
Sorry! 😭 "TRUE" is not the right answer. The correct answer is: "FALSE" Leave a comment with the right answer to continue.😄
Preprocessing the dataset
The greyscale assigned to each pixel within an image has a value range of 0-255. We will want to flatten (smoosh… scale…) this range to 0-1. To achieve this flattening, we will exploit the data structure that our images are stored in, arrays. You see, each image is stored as a 2-dimensional array where each numerical value in the array is the greyscale code of particular pixel. Conveniently, if we divide an entire array by a scalar we generate a new array whose elements are the original elements divided by the scalar.
Two vital notes about the above.
Enter a comment (TRUE or FALSE) about the following statement:
We need to rescale both the images and labels, so they are on the same scale.