From 92b59e14e9abb3f4be0574fdce29da5c6e274d7c Mon Sep 17 00:00:00 2001 From: yousif Date: Sun, 5 Mar 2023 12:37:47 -0500 Subject: [PATCH] learn.predict throws error when passed PIL image --- 01_intro.ipynb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/01_intro.ipynb b/01_intro.ipynb index ac30dc0..d8634e8 100644 --- a/01_intro.ipynb +++ b/01_intro.ipynb @@ -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}\")" ]