From b3ecb480c344d8bab23d085fdd3547ed99210eb6 Mon Sep 17 00:00:00 2001 From: Chris Ying Date: Thu, 11 Jan 2018 11:57:23 -0800 Subject: Remove debugging print statement from tf.image.random_flip_left_right. PiperOrigin-RevId: 181641673 --- tensorflow/python/ops/image_ops_impl.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tensorflow/python/ops/image_ops_impl.py b/tensorflow/python/ops/image_ops_impl.py index 7d69e8fab3..9f09d0a4d1 100644 --- a/tensorflow/python/ops/image_ops_impl.py +++ b/tensorflow/python/ops/image_ops_impl.py @@ -260,8 +260,6 @@ def random_flip_left_right(image, seed=None): lambda: array_ops.reverse(image, [1]), lambda: image, name=scope) - print('scope: ' + scope) - print('result name: ' + result.name) return fix_image_flip_shape(image, result) -- cgit v1.2.3