Last active
August 13, 2019 20:00
-
-
Save techwithshadab/761bdcfd175b70df7887a4e790e8a8ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# plotting female and male side by side | |
def show_male_and_female(): | |
female = read_image(train_image_name[0]) | |
male = read_image(train_image_name[2]) | |
pair = np.concatenate((female, male), axis=1) | |
plt.figure(figsize=(10,5)) | |
plt.imshow(pair) | |
plt.show() | |
show_male_and_female() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment