tensorflow/core/graph/regularization/README.md
This directory contains the code for TensorFlow GraphDef regularization, sometimes referred to as "canonicalization".
The TensorFlow GraphDef is the representation of TensorFlow programs. It shares a lot of the characteristics of an intermediate representation or IR. A single TensorFlow program can produce different GraphDefs, depending on the device, platform, TF version, runtime state, etc.
"Regularization" is the process of removing this non-determinism from the GraphDef.
GraphDef regularization helps us answer a variety of interesting questions:
simple_delete: An algorithm that deletes parts of the GraphDef that are not
deterministic.If you would like to contribute to the GraphDef regularization library, please send us a pull request. We welcome collaboration!