aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src/api_guides/python/framework.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/docs_src/api_guides/python/framework.md')
-rw-r--r--tensorflow/docs_src/api_guides/python/framework.md51
1 files changed, 0 insertions, 51 deletions
diff --git a/tensorflow/docs_src/api_guides/python/framework.md b/tensorflow/docs_src/api_guides/python/framework.md
deleted file mode 100644
index 40a6c0783a..0000000000
--- a/tensorflow/docs_src/api_guides/python/framework.md
+++ /dev/null
@@ -1,51 +0,0 @@
-# Building Graphs
-[TOC]
-
-Classes and functions for building TensorFlow graphs.
-
-## Core graph data structures
-
-* `tf.Graph`
-* `tf.Operation`
-* `tf.Tensor`
-
-## Tensor types
-
-* `tf.DType`
-* `tf.as_dtype`
-
-## Utility functions
-
-* `tf.device`
-* `tf.container`
-* `tf.name_scope`
-* `tf.control_dependencies`
-* `tf.convert_to_tensor`
-* `tf.convert_to_tensor_or_indexed_slices`
-* `tf.convert_to_tensor_or_sparse_tensor`
-* `tf.get_default_graph`
-* `tf.reset_default_graph`
-* `tf.import_graph_def`
-* `tf.load_file_system_library`
-* `tf.load_op_library`
-
-## Graph collections
-
-* `tf.add_to_collection`
-* `tf.get_collection`
-* `tf.get_collection_ref`
-* `tf.GraphKeys`
-
-## Defining new operations
-
-* `tf.RegisterGradient`
-* `tf.NotDifferentiable`
-* `tf.NoGradient`
-* `tf.TensorShape`
-* `tf.Dimension`
-* `tf.op_scope`
-* `tf.get_seed`
-
-## For libraries building on TensorFlow
-
-* `tf.register_tensor_conversion_function`