Skip to content

Commit

Permalink
fix fastAI ImageItemList that became ImageList
Browse files Browse the repository at this point in the history
  • Loading branch information
jqueguiner committed May 13, 2019
1 parent 1f2a5ef commit c999c82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ColorizeTrainingArtistic.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
]
},
Expand Down
2 changes: 1 addition & 1 deletion ColorizeTrainingStable.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
]
},
Expand Down

0 comments on commit c999c82

Please sign in to comment.