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 22951fd commit 52cb401Copy full SHA for 52cb401
example/tutorial_vgg19.py
@@ -6,7 +6,11 @@
6
7
import tensorflow as tf
8
import tensorlayer as tl
9
-from data.imagenet_classes import *
+try:
10
+ from data.imagenet_classes import *
11
+except Exception as e:
12
+ raise Exception("{} / download the file from: https://github.com/zsdonghao/tensorlayer/tree/master/example/data".format(e))
13
+
14
import os
15
import numpy as np
16
import time
0 commit comments