aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/summary
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-07-10 16:38:11 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-07-10 16:47:29 -0700
commit285f9766471e10fa9fee4299940225a33515c010 (patch)
tree5c475dd73043586ccd7191e3cf2b9c7e7020b269 /tensorflow/python/summary
parent0bd57e3e315956e5751987f5601edd95d5566bc5 (diff)
Made the collections argument of text_summary un-deprecated.
The argument is actually still used for adding summaries to collections. PiperOrigin-RevId: 161459624
Diffstat (limited to 'tensorflow/python/summary')
-rw-r--r--tensorflow/python/summary/text_summary.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tensorflow/python/summary/text_summary.py b/tensorflow/python/summary/text_summary.py
index 2132dc6eb8..72799f2c6c 100644
--- a/tensorflow/python/summary/text_summary.py
+++ b/tensorflow/python/summary/text_summary.py
@@ -30,7 +30,6 @@ from tensorflow.core.framework import summary_pb2
from tensorflow.python.framework import dtypes
from tensorflow.python.ops.summary_ops import _tensor_summary_v2
from tensorflow.python.summary import plugin_asset
-from tensorflow.python.util import deprecation
PLUGIN_NAME = "text"
@@ -38,11 +37,6 @@ PLUGIN_NAME = "text"
_TextPluginData = namedtuple("_TextPluginData", [])
-@deprecation.deprecated_args(
- "2017-06-13",
- "collections is deprecated. Instead of using collections to associate "
- "plugins to events, add a PluginData field to the SummaryMetadata of a "
- "Value proto.", "collections")
def text_summary(name, tensor, collections=None):
"""Summarizes textual data.