Skip to content

Instantly share code, notes, and snippets.

@Sachin-crypto
Created December 18, 2022 08:36
Show Gist options
  • Save Sachin-crypto/bf20ad28ef5806b51cf58053d1035e21 to your computer and use it in GitHub Desktop.
Save Sachin-crypto/bf20ad28ef5806b51cf58053d1035e21 to your computer and use it in GitHub Desktop.
def preprocess_img(img_path):
open_img = image.load_img(img_path, target_size=(224, 224))
img_arr = image.img_to_array(open_img)/255.0
img_reshape = img_arr.reshape(1, 224,224,3)
return img_reshape
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment