tf.graph_util.remove_training_nodes

View source on GitHub

Prunes out nodes that aren't needed for inference. (deprecated)

There are nodes like Identity and CheckNumerics that are only useful during training, and can be removed in graphs that will be used for nothing but inference. Here we identify and remove them, returning an equivalent graph. To be specific, CheckNumerics nodes are always removed, and Identity nodes that aren't involved in control edges are spliced out so that their input and outputs are directly connected.

input_graph Model to analyze and prune.
protected_nodes An optional list of names of nodes to be kept unconditionally. This is for example useful to preserve Identity output nodes.

A list of nodes with the unnecessary ones removed.