tf.contrib.learn.monitors.GraphDump.compare(other_dump, step, atol=1e-06)
Compares two GraphDump
monitors and returns differences.
Args:
-
other_dump
: AnotherGraphDump
monitor. -
step
:int
, step to compare on. -
atol
:float
, absolute tolerance in comparison of floating arrays.
Returns:
Returns tuple:
-
matched
:list
of keys that matched. -
non_matched
:dict
of keys to tuple of 2 mismatched values.
Raises:
-
ValueError
: if a key indata
is missing fromother_dump
atstep
.
Please login to continue.