Skip to content

Commit

Permalink
checkpoint file saves to same place as other files
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Zotti authored and Ryan Zotti committed Sep 12, 2016
1 parent a2cc433 commit 00c34c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion train_mlp.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def max_pool_2x2(x):

# Save the trained model to a file
saver = tf.train.Saver()
save_path = saver.save(sess, model_checkpoint_path+"/model.ckpt")
save_path = saver.save(sess, tfboard_run_dir+"/model.ckpt")
#print("validation accuracy %g" % accuracy.eval(feed_dict={x: validation_predictors, y_: validation_targets, keep_prob: 1.0}))

# Marks unambiguous successful completion to prevent deletion by cleanup script
Expand Down

0 comments on commit 00c34c1

Please sign in to comment.