forked from google-research-datasets/natural-questions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eval_utils_test.py
71 lines (55 loc) · 2.29 KB
/
eval_utils_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# coding=utf-8
# Copyright 2018 The Google AI Language Team Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Testing code for tgq_eval."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import eval_utils as util
import tensorflow as tf
class EvalUtilsTest(tf.test.TestCase):
"""Testing codes for eval_utils"""
def testSpan(self):
"""Test inconsistent null spans."""
self.assertRaises(ValueError, util.Span, -1, 1, -1, 1)
self.assertRaises(ValueError, util.Span, -1, -1, -1, 1)
self.assertRaises(ValueError, util.Span, -1, -1, 3, 1)
def testNullSpan(self):
"""Test null spans."""
self.assertTrue(util.Span(-1, -1, -1, -1).is_null_span())
self.assertFalse(util.Span(-1, -1, 0, 1).is_null_span())
def testSpanEqual(self):
"""Test span equals."""
span_a = util.Span(100, 102, -1, -1)
span_b = util.Span(100, 102, -1, -1)
self.assertTrue(util.nonnull_span_equal(span_a, span_b))
span_a = util.Span(-1, -1, 100, 102)
span_b = util.Span(-1, -1, 100, 102)
self.assertTrue(util.nonnull_span_equal(span_a, span_b))
span_a = util.Span(100, 102, -1, -1)
span_b = util.Span(-1, -1, 100, 102)
self.assertFalse(util.nonnull_span_equal(span_a, span_b))
def testSpanSetEqual(self):
"""Set span set equal."""
span_a1 = util.Span(-1, -1, 100, 102)
span_a2 = util.Span(-1, -1, 100, 102)
span_b = util.Span(-1, -1, 101, 105)
null_span = util.Span(-1, -1, -1, -1)
self.assertTrue(util.span_set_equal([span_a1, span_b], [span_a2, span_b]))
self.assertTrue(
util.span_set_equal([span_a1, span_b], [span_a2, span_b, null_span]))
self.assertFalse(
util.span_set_equal([span_a1], [span_a2, span_b, null_span]))
if __name__ == '__main__':
tf.test.main()