fix fastAI ImageItemList that became ImageList

This commit is contained in:
jqueguiner
2019-05-13 08:17:31 +00:00
parent 1f2a5eff5f
commit c999c8243f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -140,7 +140,7 @@
"outputs": [],
"source": [
"if not path_lr.exists():\n",
" il = ImageItemList.from_folder(path_hr)\n",
" il = ImageList.from_folder(path_hr)\n",
" parallel(create_training_images, il.items)"
]
},
+1 -1
View File
@@ -140,7 +140,7 @@
"outputs": [],
"source": [
"if not path_lr.exists():\n",
" il = ImageItemList.from_folder(path_hr)\n",
" il = ImageList.from_folder(path_hr)\n",
" parallel(create_training_images, il.items)"
]
},