Skip to content

Commit

Permalink
feedback from PR
Browse files Browse the repository at this point in the history
  • Loading branch information
wballard committed May 19, 2016
1 parent bae9b19 commit 9046ecf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion examples/images/convnet_highway_mnist.py
Expand Up @@ -34,7 +34,6 @@
network = highway_conv_2d(network, 16, j, activation='elu')
network = max_pool_2d(network, 2)
network = batch_normalization(network)
print(network)

network = fully_connected(network, 128, activation='elu')
network = fully_connected(network, 256, activation='elu')
Expand Down
4 changes: 2 additions & 2 deletions examples/images/convnet_mnist.py
Expand Up @@ -45,5 +45,5 @@
# Training
model = tflearn.DNN(network, tensorboard_verbose=0)
model.fit({'input': X}, {'target': Y}, n_epoch=20,
validation_set=({'input': testX}, {'target': testY}),
show_metric=True, run_id='convnet_mnist')
validation_set=({'input': testX}, {'target': testY}),
- snapshot_step=100, show_metric=True, run_id='convnet_mnist'))

0 comments on commit 9046ecf

Please sign in to comment.