Alternative work around for 2.7.11 . Thanks to @ bwarner in Fastai discord.
Try
Replace this line:
is_bird,_,probs = learn.predict(PILImage.create('bird.jpg'))
with this:
is_bird,_,probs = learn.predict('bird.jpg')
Alternative work around for 2.7.11 . Thanks to @ bwarner in Fastai discord.
Try
Replace this line:
is_bird,_,probs = learn.predict(PILImage.create('bird.jpg'))
with this:
is_bird,_,probs = learn.predict('bird.jpg')