Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. # plotting female and male side by side
  2. def show_male_and_female():
  3. female = read_image(train_image_name[0])
  4. male = read_image(train_image_name[2])
  5. pair = np.concatenate((female, male), axis=1)
  6. plt.figure(figsize=(10,5))
  7. plt.imshow(pair)
  8. plt.show()
  9.  
  10. show_male_and_female()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement