W3cubDocs

/TensorFlow Python

tf.graph_util.remove_training_nodes(input_graph)

tf.graph_util.remove_training_nodes(input_graph)

Prunes out nodes that aren't needed for inference.

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.

Args:

  • input_graph: Model to analyze and prune.

Returns:

A list of nodes with the unnecessary ones removed.

Defined in tensorflow/python/framework/graph_util_impl.py.

© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/graph_util/remove_training_nodes