Skip to content

Instantly share code, notes, and snippets.

@prateekjoshi565
Created February 4, 2020 10:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prateekjoshi565/56833eae534d6dd6606a5c4ae3b8b9fd to your computer and use it in GitHub Desktop.
Save prateekjoshi565/56833eae534d6dd6606a5c4ae3b8b9fd to your computer and use it in GitHub Desktop.
all_images = []
for i in tqdm(face_images):
img = image.load_img(i, target_size=(80,80,3))
img = image.img_to_array(img)
img = img/255.
all_images.append(img)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment