Skip to content

Instantly share code, notes, and snippets.

@shayaf84
Last active November 20, 2021 16:06
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 shayaf84/09c3878ad68c18e8a658b5fbbdc2cd4a to your computer and use it in GitHub Desktop.
Save shayaf84/09c3878ad68c18e8a658b5fbbdc2cd4a to your computer and use it in GitHub Desktop.
#Implementing our Baseline
baseline = tf.zeros(shape=(224,224,3))
#Displaying it with matplotlib
plt.imshow(baseline)
plt.title("Baseline")
plt.axis('off')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment