mirror of
https://github.com/fastai/fastbook.git
synced 2025-04-04 18:00:48 +00:00
learn.predict throws error when passed PIL image
This commit is contained in:
parent
823b69e00a
commit
92b59e14e9
@ -758,8 +758,7 @@
|
||||
}
|
||||
],
|
||||
"source": [
|
||||
"img = PILImage.create(uploader.data[0])\n",
|
||||
"is_cat,_,probs = learn.predict(img)\n",
|
||||
"is_cat,_,probs = learn.predict(uploader.data[0])\n",
|
||||
"print(f\"Is this a cat?: {is_cat}.\")\n",
|
||||
"print(f\"Probability it's a cat: {probs[1].item():.6f}\")"
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user