From 48fc6c075b248e9fa59807c09db7c170c6c88caf Mon Sep 17 00:00:00 2001 From: Sylvain Gugger Date: Mon, 30 Mar 2020 17:49:36 -0700 Subject: [PATCH] Fix #73 --- 02_production.ipynb | 4 ++-- clean/02_production.ipynb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/02_production.ipynb b/02_production.ipynb index 299725d..1dbb41f 100644 --- a/02_production.ipynb +++ b/02_production.ipynb @@ -1172,7 +1172,7 @@ "source": [ "#hide\n", "# for idx in cleaner.delete(): cleaner.fns[idx].unlink()\n", - "# for idx,cat in cleaner.change(): shutil.move(cleaner.fns[idx], path/cat)" + "# for idx,cat in cleaner.change(): shutil.move(str(cleaner.fns[idx]), path/cat)" ] }, { @@ -1188,7 +1188,7 @@ "To move images where we've selected a different category, we would run:\n", "\n", "```python\n", - "for idx,cat in cleaner.change(): shutil.move(cleaner.fns[idx], path/cat)\n", + "for idx,cat in cleaner.change(): shutil.move(str(cleaner.fns[idx]), path/cat)\n", "```\n", "\n", "> s: Cleaning the data or getting it ready for your model are two of the biggest challenges for data scientists; they say it takes 90% of their time. The fastai library aims at providing tools to make it as easy as possible.\n", diff --git a/clean/02_production.ipynb b/clean/02_production.ipynb index 245a770..6857d64 100644 --- a/clean/02_production.ipynb +++ b/clean/02_production.ipynb @@ -668,7 +668,7 @@ "source": [ "#hide\n", "# for idx in cleaner.delete(): cleaner.fns[idx].unlink()\n", - "# for idx,cat in cleaner.change(): shutil.move(cleaner.fns[idx], path/cat)" + "# for idx,cat in cleaner.change(): shutil.move(str(cleaner.fns[idx]), path/cat)" ] }, {