Immanuel
Immanuel

Reputation: 49

Google colab doesn't display errors, graphs, any image results while working with python and tensorflow for Image classification?

I'm using notebooks(Jupyter and google colab) but whenever there is an error, or image to be displayed as a result, or graph. When I run the code there is only empty space displayed for those image results or error, but there is no actual results displayed.

Image for reference

Upvotes: 0

Views: 1270

Answers (1)

user13966865
user13966865

Reputation: 468

Try this

from IPython.display import Image
Image('yourimage.png')

Upvotes: 1

Related Questions