From 65b90394d55d2b72316e6edae2f927a961474a16 Mon Sep 17 00:00:00 2001 From: Steven Lei <474933858@qq.com> Date: Wed, 24 Oct 2018 14:56:27 +0800 Subject: [PATCH] improved code robustness if a man have "nets" folder in his path, he will can not run cell 4. he will get error "cannot import name 'ssd_vgg_300'", my pull request solve the problem. --- notebooks/ssd_notebook.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/ssd_notebook.ipynb b/notebooks/ssd_notebook.ipynb index d62a752fb..c40900e45 100644 --- a/notebooks/ssd_notebook.ipynb +++ b/notebooks/ssd_notebook.ipynb @@ -47,7 +47,7 @@ "outputs": [], "source": [ "import sys\n", - "sys.path.append('../')" + "sys.path.insert(0, '../')" ] }, {