Skip to content

Commit bc00df4

Browse files
Removes useless variable
1 parent 7ed5fbe commit bc00df4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/4_Utils/save_restore_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def multilayer_perceptron(x, weights, biases):
108108
sess.run(init)
109109

110110
# Restore model weights from previously saved model
111-
load_path = saver.restore(sess, model_path)
111+
saver.restore(sess, model_path)
112112
print "Model restored from file: %s" % save_path
113113

114114
# Resume training

0 commit comments

Comments
 (0)