Closed VigneshSrinivasan10 closed 8 years ago
You need to use the saver built into tensorflow (tf.train.Saver) or the checkpointing built into pt.train.Runner (which uses the saver under the hood; set the save_path on creation).
Because of the deferred nature of TF, the variables in the collection are just pointers into the graph def and contain no data.
Hi,
This question is a post-op of the issue #6 .
How do we load the weights back into the model once they are saved. I had them saved this way.
Thanks in advance!