Skip to content

Commit

Permalink
fixed VGG example in documentation
Browse files Browse the repository at this point in the history
see #72
  • Loading branch information
jonasrauber committed Sep 22, 2017
1 parent d1bdc30 commit dbbcdcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/user/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ First, create the model in TensorFlow.
images = tf.placeholder(tf.float32, shape=(None, 224, 224, 3))
preprocessed = images - [123.68, 116.78, 103.94]
logits, _ = vgg.vgg_19(images, is_training=False)
logits, _ = vgg.vgg_19(preprocessed, is_training=False)
restorer = tf.train.Saver(tf.trainable_variables())
image, _ = foolbox.utils.imagenet_example()
Expand Down

0 comments on commit dbbcdcb

Please sign in to comment.