creative_sh
creative_sh

Reputation: 69

remove nodes from a tensorflow graph

This is my tensorflow 1.x graph and I want to remove the input nodes and map part and feed my input to resnet part. to be more specific, I want to delete the decode part of the graph which decodes the input images. How should I do it ? please mention that by which format I should do it ? should I use frozen graph.pb or saved_model.pb or .ckpt files?

enter image description here

Upvotes: 0

Views: 175

Answers (1)

creative_sh
creative_sh

Reputation: 69

finally, with the help of This link I successfully could remove some specific nodes with specific prefix in their names from the beginning of the graph.

Upvotes: 1

Related Questions