test_iou_similarity_op.py 1.8 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
W
wanghaox 已提交
2
#
3 4 5
# 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
W
wanghaox 已提交
6
#
7
#     http://www.apache.org/licenses/LICENSE-2.0
W
wanghaox 已提交
8
#
9 10 11 12 13 14
# 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.

W
wanghaox 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
import unittest
import numpy as np
import sys
import math
from op_test import OpTest


class TestIOUSimilarityOp(OpTest):
    def test_check_output(self):
        self.check_output()

    def setUp(self):
        self.op_type = "iou_similarity"
        self.boxes1 = np.array(
            [[4.0, 3.0, 7.0, 5.0], [5.0, 6.0, 10.0, 7.0]]).astype('float32')
        self.boxes2 = np.array([[3.0, 4.0, 6.0, 8.0], [14.0, 14.0, 15.0, 15.0],
                                [0.0, 0.0, 20.0, 20.0]]).astype('float32')
        self.output = np.array(
            [[2.0 / 16.0, 0, 6.0 / 400.0],
             [1.0 / 16.0, 0.0, 5.0 / 400.0]]).astype('float32')
W
wanghaox 已提交
35 36 37 38

        self.inputs = {'X': self.boxes1, 'Y': self.boxes2}

        self.outputs = {'Out': self.output}
W
wanghaox 已提交
39 40


41 42 43 44 45 46 47 48 49 50 51 52 53
class TestIOUSimilarityOpWithLoD(TestIOUSimilarityOp):
    def test_check_output(self):
        self.check_output()

    def setUp(self):
        super(TestIOUSimilarityOpWithLoD, self).setUp()
        self.boxes1_lod = [[0, 1, 2]]
        self.output_lod = [[0, 1, 2]]

        self.inputs = {'X': (self.boxes1, self.boxes1_lod), 'Y': self.boxes2}
        self.outputs = {'Out': (self.output, self.output_lod)}


W
wanghaox 已提交
54 55
if __name__ == '__main__':
    unittest.main()