October 2018
Intermediate to advanced
472 pages
10h 57m
English
Scale the train input, test input, and target images to range between 0 and 1 so that the learning process is faster:
# scale images to range between 0 and 1# 14*14 train imagesXX_train = XX_train/255# 28*28 train label imagesX_train = X_train/255# 14*14 test imagesXX_test = XX_test/255# 28*28 test label imagesX_test = X_test/255
Read now
Unlock full access