aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/copy_graph
diff options
context:
space:
mode:
authorGravatar Brennan Saeta <saeta@google.com>2017-02-13 15:34:03 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-02-13 17:21:19 -0800
commit69d028435d3b10809f5bf34708e493233485e626 (patch)
treea779f8a0d4d0229d277248bd733595c41f875ee2 /tensorflow/contrib/copy_graph
parent3aa4b69be09dc47893ffcc6226d014dde759ea64 (diff)
Documentation changes to adhere to new doc generator
Change: 147402290
Diffstat (limited to 'tensorflow/contrib/copy_graph')
-rw-r--r--tensorflow/contrib/copy_graph/__init__.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tensorflow/contrib/copy_graph/__init__.py b/tensorflow/contrib/copy_graph/__init__.py
index 96dc0d7df2..30a0aac140 100644
--- a/tensorflow/contrib/copy_graph/__init__.py
+++ b/tensorflow/contrib/copy_graph/__init__.py
@@ -12,8 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
-"""Functions for copying elements from one graph to another.
+"""Functions to copy elements between graphs.
+See the @{$python/contrib.copy_graph} guide.
"""
from __future__ import absolute_import
@@ -21,7 +22,9 @@ from __future__ import division
from __future__ import print_function
from tensorflow.contrib.copy_graph.python.util import copy_elements
+# pylint: disable=wildcard-import
from tensorflow.contrib.copy_graph.python.util.copy_elements import *
+# pylint: enable=wildcard-import
from tensorflow.python.util.all_util import remove_undocumented