Open_Image Command For custom Image in Google Colab

Hi I have faced problems with open_image command. I am quite new to fastai.


I don’t know what the issue is. Does anyone knows how to solve this issue?

Hi

I think open_image is in fastai1, to work with it you need to have fastai1 installed instead of fastai2. Docs: open_image.

But you can open the image in fastai2. simply replace open_image(’…’) with Image.open(’…’)

Docs: vision

hope it solves the problem.