aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Chris Ying <chrisying@google.com>2018-01-11 11:57:23 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-01-11 12:00:52 -0800
commitb3ecb480c344d8bab23d085fdd3547ed99210eb6 (patch)
tree38d1e41b2682dc109f6744f20cc9493733a4c61a
parenta6af6f93c80f044bf340492ea055c1a1debff038 (diff)
Remove debugging print statement from tf.image.random_flip_left_right.
PiperOrigin-RevId: 181641673
-rw-r--r--tensorflow/python/ops/image_ops_impl.py2
1 files changed, 0 insertions, 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)