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 d1bdc30 commit dbbcdcbCopy full SHA for dbbcdcb
docs/user/examples.rst
@@ -38,7 +38,7 @@ First, create the model in TensorFlow.
38
39
images = tf.placeholder(tf.float32, shape=(None, 224, 224, 3))
40
preprocessed = images - [123.68, 116.78, 103.94]
41
- logits, _ = vgg.vgg_19(images, is_training=False)
+ logits, _ = vgg.vgg_19(preprocessed, is_training=False)
42
restorer = tf.train.Saver(tf.trainable_variables())
43
44
image, _ = foolbox.utils.imagenet_example()
0 commit comments