Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to standardize the image data to have values between 0 and 1

# Standardize data to have feature values between 0 and 1.
train_x = train_x_flatten/255.
test_x = test_x_flatten/255.
 
PREVIOUS NEXT
Tagged: #standardize #image #data #values
ADD COMMENT
Topic
Name
5+9 =