learn.predict throws error when passed PIL image

This commit is contained in:
yousif 2023-03-05 12:37:47 -05:00
parent 823b69e00a
commit 92b59e14e9

View File

@ -758,8 +758,7 @@
} }
], ],
"source": [ "source": [
"img = PILImage.create(uploader.data[0])\n", "is_cat,_,probs = learn.predict(uploader.data[0])\n",
"is_cat,_,probs = learn.predict(img)\n",
"print(f\"Is this a cat?: {is_cat}.\")\n", "print(f\"Is this a cat?: {is_cat}.\")\n",
"print(f\"Probability it's a cat: {probs[1].item():.6f}\")" "print(f\"Probability it's a cat: {probs[1].item():.6f}\")"
] ]