In tensorflow the training from the scratch produced following 6 files:
- events.out.tfevents.1503494436.06L7-BRM738
- model.ckpt-22480.meta
- checkpoint
- model.ckpt-22480.data-00000-of-00001
- model.ckpt-22480.index
- graph.pbtxt
I would like to convert them (or only the needed ones) into one file graph.pb to be able to transfer it to my Android application.
I tried the script freeze_graph.py
but it requires as an input already the input.pb file which I do not have. (I have only these 6 files mentioned before). How to proceed to get this one freezed_graph.pb file? I saw several threads but none was working for me.
graph.pbtxt
? If it is the graph of your model you can freeze it withfreeze.py
..pbtxt
. – Thunderclap