tf.compat.v1.test.assert_equal_graph_def  |  TensorFlow v2.16.1 (original) (raw)

tf.compat.v1.test.assert_equal_graph_def

Asserts that two GraphDefs are (mostly) the same.

tf.compat.v1.test.assert_equal_graph_def(
    actual: tf.compat.v1.GraphDef,
    expected: tf.compat.v1.GraphDef,
    checkpoint_v2: bool = False,
    hash_table_shared_name: bool = False
) -> None

Compares two GraphDef protos for equality, ignoring versions and ordering of nodes, attrs, and control inputs. Node names are used to match up nodes between the graphs, so the naming of nodes must be consistent.

Args
actual The GraphDef we have.
expected The GraphDef we expected.
checkpoint_v2 boolean determining whether to ignore randomized attribute values that appear in V2 checkpoints.
hash_table_shared_name boolean determining whether to ignore randomized shared_names that appear in HashTableV2 op defs.
Raises
AssertionError If the GraphDefs do not match.
TypeError If either argument is not a GraphDef.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.

Last updated 2024-04-26 UTC.