Skip to content

Commit bb388db

Browse files
committed
[example] update inception v3, get label file
1 parent 678bb4e commit bb388db

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

example/tutorial_inceptionV3_tfslim.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@
1313
import skimage.io
1414
import skimage.transform
1515
import time, os
16-
from data.imagenet_classes import *
16+
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))
1720
import numpy as np
1821
"""
1922
You will learn:

0 commit comments

Comments
 (0)