From 0397b19b2b11d1267a400f1cdcdcaf26386629be Mon Sep 17 00:00:00 2001 From: Chaz Goodare Date: Fri, 18 Jun 2021 11:42:19 +1200 Subject: [PATCH] fix(common): add missing all to import This imports all from the fastasi vision library Previously an error would occur when calling untar_data --- nbs/dl1/lesson1-pets.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nbs/dl1/lesson1-pets.ipynb b/nbs/dl1/lesson1-pets.ipynb index ab39137348..7e14841415 100644 --- a/nbs/dl1/lesson1-pets.ipynb +++ b/nbs/dl1/lesson1-pets.ipynb @@ -42,7 +42,7 @@ "metadata": {}, "outputs": [], "source": [ - "from fastai.vision import *\n", + "from fastai.vision.all import *\n", "from fastai.metrics import error_rate" ] },