Publishing 2019 R1 content
[platform/upstream/dldt.git] / model-optimizer / extensions / front / caffe / proposal_ext_test.py
1 """
2  Copyright (c) 2018-2019 Intel Corporation
3
4  Licensed under the Apache License, Version 2.0 (the "License");
5  you may not use this file except in compliance with the License.
6  You may obtain a copy of the License at
7
8       http://www.apache.org/licenses/LICENSE-2.0
9
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15 """
16
17 import unittest
18 from unittest.mock import patch
19
20 from extensions.front.caffe.proposal_ext import ProposalFrontExtractor
21 from extensions.ops.proposal import ProposalOp
22 from mo.utils.unittest.extractors import FakeMultiParam
23 from mo.utils.unittest.graph import FakeNode
24 from mo.ops.op import Op
25
26
27 class FakeProposalProtoLayer:
28     def __init__(self, val):
29         self.proposal_param = val
30
31
32 class TestProposalExt(unittest.TestCase):
33     @classmethod
34     def setUpClass(cls):
35         Op.registered_ops['Proposal'] = ProposalOp
36
37     def test_proposal_no_pb_no_ml(self):
38         self.assertRaises(AttributeError, ProposalFrontExtractor.extract, None)
39
40     @patch('extensions.front.caffe.proposal_ext.merge_attrs')
41     def test_proposal_ext_ideal_numbers(self, merge_attrs):
42         params = {
43             'feat_stride': 1,
44             'base_size': 16,
45             'min_size': 16,
46             'ratio': 1,
47             'scale': 2,
48             'pre_nms_topn': 6000,
49             'post_nms_topn': 300,
50             'nms_thresh': 0.7
51         }
52         merge_attrs.return_value = {
53             **params
54         }
55
56         fake_pl = FakeProposalProtoLayer(FakeMultiParam(params))
57         fake_node = FakeNode(fake_pl, None)
58
59         ProposalFrontExtractor.extract(fake_node)
60
61         exp_res = {
62             'type': "Proposal",
63             'feat_stride': 1,
64             'base_size': 16,
65             'min_size': 16,
66             'ratio': 1,
67             'scale': 2,
68             'pre_nms_topn': 6000,
69             'post_nms_topn': 300,
70             'nms_thresh': 0.7,
71             'infer': ProposalOp.proposal_infer
72         }
73
74         for key in exp_res.keys():
75             self.assertEqual(fake_node[key], exp_res[key])