We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb388db commit 478d538Copy full SHA for 478d538
example/tutorial_vgg16.py
@@ -9,7 +9,10 @@
9
import numpy as np
10
import time
11
from scipy.misc import imread, imresize
12
-from data.imagenet_classes import *
+try:
13
+ from data.imagenet_classes import *
14
+except Exception as e:
15
+ raise Exception("{} / download the file from: https://github.com/zsdonghao/tensorlayer/tree/master/example/data".format(e))
16
17
"""
18
VGG-16 for ImageNet
0 commit comments