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 678bb4e commit bb388dbCopy full SHA for bb388db
example/tutorial_inceptionV3_tfslim.py
@@ -13,7 +13,10 @@
13
import skimage.io
14
import skimage.transform
15
import time, os
16
-from data.imagenet_classes import *
+try:
17
+ from data.imagenet_classes import *
18
+except Exception as e:
19
+ raise Exception("{} / download the file from: https://github.com/zsdonghao/tensorlayer/tree/master/example/data".format(e))
20
import numpy as np
21
"""
22
You will learn:
0 commit comments