aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/kfac
diff options
context:
space:
mode:
authorGravatar Derek Murray <mrry@google.com>2018-02-09 14:52:24 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-02-09 14:59:43 -0800
commit5fe3a9603a81f50d0b374bc26ad34bbd03f3b4c4 (patch)
treeda04a6c8296f14eb8805099daeb8ad26c0f0d0be /tensorflow/contrib/kfac
parent894a00ad03f1304044377e2846199e5bc2580fc5 (diff)
[tf.data] Remove deprecated `tf.contrib.data.Dataset` class.
This change removes the following class: * `tf.contrib.data.Dataset`. IF THIS BREAKS YOU: Replace `tf.contrib.data.Dataset` with `tf.data.Dataset` when constructing a dataset. Note that you may have to modify downstream transformations to use the core API. See "tensorflow/contrib/data/README.md" for details of how to update your code to use the core API. PiperOrigin-RevId: 185197005
Diffstat (limited to 'tensorflow/contrib/kfac')
-rw-r--r--tensorflow/contrib/kfac/python/ops/op_queue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/kfac/python/ops/op_queue.py b/tensorflow/contrib/kfac/python/ops/op_queue.py
index 831870fca4..b6d9d37a31 100644
--- a/tensorflow/contrib/kfac/python/ops/op_queue.py
+++ b/tensorflow/contrib/kfac/python/ops/op_queue.py
@@ -18,7 +18,7 @@ from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
-from tensorflow.contrib.data.python.ops import dataset_ops
+from tensorflow.python.data.ops import dataset_ops
from tensorflow.python.framework import ops as tf_ops