HomeSort by relevance Sort by last modified time
    Searched refs:stepper (Results 1 - 8 of 8) sorted by null

  /external/tensorflow/tensorflow/python/debug/lib/
stepper_test.py 15 """Unit tests of the tfdbg Stepper."""
23 from tensorflow.python.debug.lib.stepper import NodeStepper
70 with NodeStepper(self.sess, "e:0") as stepper:
71 sorted_nodes = stepper.sorted_nodes()
83 set(stepper.closure_elements()))
88 "the stepper"):
89 stepper.cont("f:0")
92 with NodeStepper(self.sess, "e:0") as stepper:
93 self.assertAllClose(6.0, stepper.cont("c"))
96 with NodeStepper(self.sess, "e:0") as stepper
    [all...]
  /external/tensorflow/tensorflow/python/debug/cli/
stepper_cli_test.py 15 """Tests of the Stepper CLI Backend."""
29 from tensorflow.python.debug.lib import stepper
39 # Regex pattern for a node line in the stepper CLI output.
83 if line.startswith("Stepper used feeds:"):
181 with stepper.NodeStepper(self.sess, self.e) as node_stepper:
195 with stepper.NodeStepper(self.sess, self.f) as node_stepper:
217 with stepper.NodeStepper(self.sess, self.f) as node_stepper:
222 "ERROR: foobar is not in the transitive closure of this stepper "
227 with stepper.NodeStepper(self.sess, self.e) as node_stepper:
232 "ERROR: f is not in the transitive closure of this stepper "
    [all...]
stepper_cli.py 15 """CLI Backend for the Node Stepper Part of the Debugger."""
29 from tensorflow.python.debug.lib import stepper
35 """Command-line-interface backend of Node Stepper."""
37 # Possible states of an element in the transitive closure of the stepper's
62 "%s is not in the transitive closure of this stepper instance.",
80 stepper.NodeStepper.FEED_TYPE_CLIENT: cli_shared.COLOR_WHITE,
81 stepper.NodeStepper.FEED_TYPE_HANDLE: cli_shared.COLOR_GREEN,
82 stepper.NodeStepper.FEED_TYPE_OVERRIDE: cli_shared.COLOR_YELLOW,
83 stepper.NodeStepper.FEED_TYPE_DUMPED_INTERMEDIATE: cli_shared.COLOR_BLUE,
89 # Command parsers for the stepper
    [all...]
  /external/tensorflow/tensorflow/python/debug/wrappers/
local_cli_wrapper.py 181 description="Invoke stepper (cont, step, breakpoint, etc.)",
630 """Overrides method in base class to implement interactive node stepper.
633 node_stepper: (`stepper.NodeStepper`) The underlying NodeStepper API
636 values have been altered during this node-stepper invocation should be
644 stepper = stepper_cli.NodeStepperCLI(node_stepper)
646 # On exiting the node-stepper CLI, the finalize method of the node_stepper
659 stepper.list_sorted_nodes,
660 stepper.arg_parsers["list_sorted_nodes"].format_help(),
664 stepper.cont,
665 stepper.arg_parsers["cont"].format_help()
    [all...]
hooks.py 23 from tensorflow.python.debug.lib import stepper
137 with stepper.NodeStepper(
dumping_wrapper_test.py 28 from tensorflow.python.debug.lib import stepper
385 node_stepper = stepper.NodeStepper(self.sess, self.inc_v)
388 r"NonInteractiveDebugWrapperSession does not support node-stepper "
framework.py 121 from tensorflow.python.debug.lib import stepper
236 # the (to-be-implemented) debug stepper.
339 # TODO(cais): Add on_cont_start and on_cont_end callbacks once the stepper is
527 "Stepper mode is not implemented for callables created by "
531 with stepper.NodeStepper(
683 with or without debug tensor watching, invoking the stepper.)
732 node_stepper: (stepper.NodeStepper) An instance of NodeStepper to be used
735 have been altered during this node-stepper invocation should be restored
    [all...]
  /external/tensorflow/tensorflow/contrib/bayesflow/python/kernel_tests/
metropolis_hastings_test.py 156 stepper = mh.evolve(
164 sess.run(stepper)

Completed in 91 milliseconds