Home | History | Annotate | Download | only in python

Lines Matching refs:tensorflow

1 # Copyright 2017 The TensorFlow Authors. All Rights Reserved.
15 """TensorFlow Eager execution prototype.
76 from tensorflow.contrib.eager.python import metrics
77 from tensorflow.contrib.eager.python.datasets import Iterator
78 from tensorflow.contrib.eager.python.network import Network
79 from tensorflow.contrib.eager.python.network import Sequential
80 from tensorflow.contrib.eager.python.network import save_network_checkpoint
81 from tensorflow.contrib.eager.python.network import restore_network_checkpoint
82 from tensorflow.contrib.eager.python.saver import get_optimizer_variables
83 from tensorflow.contrib.eager.python.saver import restore_variables_on_create
84 from tensorflow.contrib.eager.python.saver import Saver
85 from tensorflow.python.eager import backprop
86 from tensorflow.python.eager import function
87 from tensorflow.python.eager.context import DEVICE_PLACEMENT_EXPLICIT
88 from tensorflow.python.eager.context import DEVICE_PLACEMENT_WARN
89 from tensorflow.python.eager.context import DEVICE_PLACEMENT_SILENT
90 from tensorflow.python.eager.context import in_eager_mode
91 from tensorflow.python.eager.context import in_graph_mode
92 from tensorflow.python.eager.context import list_devices
93 from tensorflow.python.eager.context import num_gpus
94 from tensorflow.python.eager.custom_gradient import custom_gradient
95 from tensorflow.python.eager.execution_callbacks import add_execution_callback
96 from tensorflow.python.eager.execution_callbacks import clear_execution_callbacks
97 from tensorflow.python.eager.execution_callbacks import inf_callback
98 from tensorflow.python.eager.execution_callbacks import inf_nan_callback
99 from tensorflow.python.eager.execution_callbacks import nan_callback
100 from tensorflow.python.eager.execution_callbacks import seterr
101 from tensorflow.python.framework.ops import enable_eager_execution
102 from tensorflow.python.framework.ops import eager_run as run
103 from tensorflow.python.framework.test_util import run_in_graph_and_eager_modes as run_test_in_graph_and_eager_modes
104 from tensorflow.python.ops.resource_variable_ops import ResourceVariable as Variable
105 from tensorflow.python.ops.variable_scope import EagerVariableStore
106 from tensorflow.python.ops import script_ops
107 from tensorflow.python.ops import template
108 from tensorflow.python.util.all_util import remove_undocumented