aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/data/__init__.py
diff options
context:
space:
mode:
authorGravatar Derek Murray <mrry@google.com>2018-01-15 15:43:28 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-01-15 15:47:21 -0800
commita976d3c0843932e6226c7571e94f542b1b7d2dc6 (patch)
tree2edb22391d7d1bb219e49ee9249b2882d410f2e5 /tensorflow/contrib/data/__init__.py
parentbdb1a5ee6ca8d343a7a03614fb8fbfb653e848cc (diff)
Migrate `tf.contrib.data` users to the stable `tf.data` API.
PiperOrigin-RevId: 181993953
Diffstat (limited to 'tensorflow/contrib/data/__init__.py')
-rw-r--r--tensorflow/contrib/data/__init__.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tensorflow/contrib/data/__init__.py b/tensorflow/contrib/data/__init__.py
index c004c38e29..daeb6a6105 100644
--- a/tensorflow/contrib/data/__init__.py
+++ b/tensorflow/contrib/data/__init__.py
@@ -12,7 +12,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
-"""`tf.contrib.data.Dataset` API for input pipelines.
+"""`tf.contrib.data` API for input pipelines.
+
+This module contains the experimental (less stable) counterpart to the
+`tf.data` API. See @{tf.data.Dataset} and @{tf.data.Iterator} for the
+stable classes.
See the @{$datasets$Importing Data} Programmer's Guide for an overview.