From 661dee2b05e61b14a5a69852477dcd659f05d9d5 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Tue, 6 Dec 2016 14:34:05 -0800 Subject: [PATCH] Add deprecation tag to concat. Change: 141227772 --- tensorflow/python/ops/array_ops.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tensorflow/python/ops/array_ops.py b/tensorflow/python/ops/array_ops.py index 7048b9d54fd2e4..0cbc0bb163b219 100644 --- a/tensorflow/python/ops/array_ops.py +++ b/tensorflow/python/ops/array_ops.py @@ -1057,6 +1057,10 @@ def concat_v2(values, axis, name="concat_v2"): name=name) +@deprecated( + "2016-12-13", + "This op will be removed after the deprecation date. " + "Please switch to tf.concat_v2().") def concat(concat_dim, values, name="concat"): """Concatenates tensors along one dimension.