python
1import keras 2from keras.datasets import mnist 3from matplotlib import pyplot 4 5(X_train, Y_train), (X_test, Y_test) = mnist.load_data() 6 7 8for i in range(0, 32): 9 pyplot.subplot(4, 8, i + 1) 10 pyplot.imshow(X_train[i], cmap='gray') 11 12pyplot.show() 13print(X_train) 14 15X_train = X_train.reshape(-1, 784).astype('float32') / 255 16X_test = X_test.reshape(-1, 784).astype('float32') / 255 17 18print(X_train)
独学で機械学習をしていて上記のコードで疑問に思ったのですが、15,16行目のastype関数を用いてint型から文字型に変換しているところの /255の働きを教えてください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/31 07:57
2021/05/31 09:10
2021/06/01 04:16