Skip to content

Instantly share code, notes, and snippets.

@Alakhator
Created May 15, 2020 10:09
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save Alakhator/7aabfc35ad0fd4aba268133cf19f5731 to your computer and use it in GitHub Desktop.
# Visualize
fig, axes = plt.subplots(1, len(faces))
for face, ax in zip(faces, axes):
ax.imshow(face.permute(1, 2, 0).int().numpy())
ax.axis('off')
fig.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment