aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/deprecated
diff options
context:
space:
mode:
authorGravatar Justine Tunney <jart@google.com>2016-12-29 22:46:24 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-12-29 23:06:59 -0800
commite121667dc609de978a223c56ee906368d2c4ceef (patch)
tree7d4e1f1e1b4fd469487872c0cd34ddace5ac570c /tensorflow/contrib/deprecated
parent7815fcba7767aa1eb3196c5861e174f8b3c43bab (diff)
Remove so many more hourglass imports
Change: 143230429
Diffstat (limited to 'tensorflow/contrib/deprecated')
-rw-r--r--tensorflow/contrib/deprecated/BUILD5
-rw-r--r--tensorflow/contrib/deprecated/summaries_test.py33
2 files changed, 22 insertions, 16 deletions
diff --git a/tensorflow/contrib/deprecated/BUILD b/tensorflow/contrib/deprecated/BUILD
index 791580a04a..8ba445aec3 100644
--- a/tensorflow/contrib/deprecated/BUILD
+++ b/tensorflow/contrib/deprecated/BUILD
@@ -22,7 +22,10 @@ py_test(
srcs_version = "PY2AND3",
deps = [
":deprecated_py",
- "//tensorflow:tensorflow_py",
+ "//tensorflow/python:array_ops",
+ "//tensorflow/python:client_testlib",
+ "//tensorflow/python:framework_for_generated_wrappers",
+ "//tensorflow/python:logging_ops",
],
)
diff --git a/tensorflow/contrib/deprecated/summaries_test.py b/tensorflow/contrib/deprecated/summaries_test.py
index cff39d196e..6acf2a6469 100644
--- a/tensorflow/contrib/deprecated/summaries_test.py
+++ b/tensorflow/contrib/deprecated/summaries_test.py
@@ -18,43 +18,46 @@ from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
-import tensorflow as tf
+from tensorflow.python.framework import constant_op
+from tensorflow.python.ops import array_ops
+from tensorflow.python.ops import logging_ops
+from tensorflow.python.platform import test
-class DeprecatedSummariesTest(tf.test.TestCase):
+class DeprecatedSummariesTest(test.TestCase):
def testScalarSummary(self):
with self.test_session():
- c = tf.constant(3)
- s = tf.contrib.deprecated.scalar_summary('tag', c)
+ c = constant_op.constant(3)
+ s = logging_ops.scalar_summary('tag', c)
self.assertEqual(s.op.type, u'ScalarSummary')
def testHistogramSummary(self):
with self.test_session():
- c = tf.constant(3)
- s = tf.contrib.deprecated.histogram_summary('tag', c)
+ c = constant_op.constant(3)
+ s = logging_ops.histogram_summary('tag', c)
self.assertEqual(s.op.type, u'HistogramSummary')
def testImageSummary(self):
with self.test_session():
- i = tf.ones((5, 4, 4, 3))
- s = tf.contrib.deprecated.image_summary('tag', i)
+ i = array_ops.ones((5, 4, 4, 3))
+ s = logging_ops.image_summary('tag', i)
self.assertEqual(s.op.type, u'ImageSummary')
def testAudioSummary(self):
with self.test_session():
- c = tf.constant(3.0)
- s = tf.contrib.deprecated.audio_summary('tag', c, sample_rate=8000)
+ c = constant_op.constant(3.0)
+ s = logging_ops.audio_summary('tag', c, sample_rate=8000)
self.assertEqual(s.op.type, u'AudioSummaryV2')
def testMergeSummary(self):
with self.test_session():
- c = tf.constant(3)
- a = tf.contrib.deprecated.scalar_summary('a', c)
- b = tf.contrib.deprecated.scalar_summary('b', c)
- s = tf.contrib.deprecated.merge_summary([a, b])
+ c = constant_op.constant(3)
+ a = logging_ops.scalar_summary('a', c)
+ b = logging_ops.scalar_summary('b', c)
+ s = logging_ops.merge_summary([a, b])
self.assertEqual(s.op.type, u'MergeSummary')
if __name__ == '__main__':
- tf.test.main()
+ test.main()