소스 검색

Merge pull request #99 from jqueguiner/fix-ImageList-FastAI

Fix image list function for fast ai
Jason Antic 6 년 전
부모
커밋
f74457666a
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      ColorizeTrainingArtistic.ipynb
  2. 1 1
      ColorizeTrainingStable.ipynb

+ 1 - 1
ColorizeTrainingArtistic.ipynb

@@ -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
ColorizeTrainingStable.ipynb

@@ -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)"
    ]
   },