aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/crf/python/kernel_tests/crf_test.py
diff options
context:
space:
mode:
authorGravatar Yifei Feng <yifeif@google.com>2018-04-23 21:19:14 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-04-23 21:21:38 -0700
commit22f3a97b8b089202f60bb0c7697feb0c8e0713cc (patch)
treed16f95826e4be15bbb3b0f22bed0ca25d3eb5897 /tensorflow/contrib/crf/python/kernel_tests/crf_test.py
parent24b7c9a800ab5086d45a7d83ebcd6218424dc9e3 (diff)
Merge changes from github.
PiperOrigin-RevId: 194031845
Diffstat (limited to 'tensorflow/contrib/crf/python/kernel_tests/crf_test.py')
-rw-r--r--tensorflow/contrib/crf/python/kernel_tests/crf_test.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/tensorflow/contrib/crf/python/kernel_tests/crf_test.py b/tensorflow/contrib/crf/python/kernel_tests/crf_test.py
index 721dc4d080..a5e065b93a 100644
--- a/tensorflow/contrib/crf/python/kernel_tests/crf_test.py
+++ b/tensorflow/contrib/crf/python/kernel_tests/crf_test.py
@@ -281,6 +281,21 @@ class CrfTest(test.TestCase):
self.assertEqual(list(tf_actual_max_sequence[:sequence_lengths]),
expected_max_sequence[:sequence_lengths])
+ def testCrfDecodeZeroSeqLength(self):
+ """
+ Test that crf_decode works when sequence_length contains one or more zeros.
+ """
+ with self.test_session() as sess:
+ inputs = constant_op.constant(np.ones([2, 10, 5],
+ dtype=np.float32))
+ transition_params = constant_op.constant(np.ones([5, 5],
+ dtype=np.float32))
+ sequence_lengths = constant_op.constant(np.zeros([2],
+ dtype=np.int32))
+ values = crf.crf_decode(inputs, transition_params, sequence_lengths)
+ tags, scores = sess.run(values)
+ self.assertEqual(len(tags.shape), 2)
+ self.assertEqual(len(scores.shape), 1)
if __name__ == "__main__":
test.main()