From 87eeb1bfc436d3ae5b4b7cd76e05ee87b8e63df7 Mon Sep 17 00:00:00 2001 From: Paige Bailey Date: Sat, 6 Apr 2019 11:10:44 -0700 Subject: [PATCH] Updated with code formatting for endpoints. --- tensorflow/python/ops/ctc_ops.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/python/ops/ctc_ops.py b/tensorflow/python/ops/ctc_ops.py index 80502daaac3b0d..1fe300b00da889 100644 --- a/tensorflow/python/ops/ctc_ops.py +++ b/tensorflow/python/ops/ctc_ops.py @@ -881,9 +881,9 @@ def dense_labels_to_sparse(dense, length): @tf_export("nn.ctc_unique_labels") def ctc_unique_labels(labels, name=None): - """Get unique labels and indices for batched labels for tf.nn.ctc_loss. + """Get unique labels and indices for batched labels for `tf.nn.ctc_loss`. - For use with tf.nn.ctc_loss_v2 optional argument `unique`: This op can be + For use with `tf.nn.ctc_loss_v2` optional argument `unique`: This op can be used to preprocess labels in input pipeline to for better speed/memory use computing the ctc loss on TPU.