Which of the following statements a) , b) or c) is false?
A) Numeric features in data samples may have value ranges that vary widely. Deep learning networks perform better on data that is scaled either into the range 0.0 to 1.0, or to a range for which the data's mean is 1.0 and its standard deviation is 0.0. Getting your data into one of these forms is known as xe "normalized data"normalization.
B) In MNIST, each pixel is an integer in the range 0-255.
C) Assuming X_train and X_test represent the MNIST samples, the following code converts the MNIST pixel values to 32-bit (4-byte) floating-point numbers using the xe "NumPy:convert array to floating-point values"NumPy array method astype, then divides every element in the resulting array by 255, producing normalized values in the range 0.0-1.0:
X_train = X_train.astype('float32') / 255
X_test = X_test.astype('float32') / 255
D) All of the above statements are true.
Correct Answer:
Verified
Q26: Consider the following code: import numpy as
Q27: Which of the following statements about a
Q28: A _ function produces a measure of
Q29: A typical convolutional neural network consists of
Q30: The MNIST xe "convnet (convolutional neural network)"convnet's
Q32: Which of the following statements a), b)
Q33: The IPython magic _ indicates that Matplotlib-based
Q34: Which of the following statements is false?
A)
Q35: Which of the following statements a), b)
Q36: Which of the following statements a), b)
Unlock this Answer For Free Now!
View this answer and more for free by performing one of the following actions
Scan the QR code to install the App and get 2 free unlocks
Unlock quizzes for free by uploading documents