Created
October 18, 2018 17:41
-
-
Save cwood1967/c6d78785c6d2d7a76729e4c9ba315e67 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Using tensorflow freeze graph to read a graph saved with | |
## tf.train.write_graph | |
incheck=autoencoder-2048x-10000 | |
ingraph=saved_10000.pb | |
outgraph=frozen_faces_10000.pb | |
outnodes=decoder/Sigmoid | |
python -m tensorflow.python.tools.freeze_graph \ | |
--input_graph=$ingraph \ | |
--input_checkpoint=$incheck \ | |
--output_graph=$outgraph \ | |
--output_node_names=$outnodes \ | |
--input_binary=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment