Publishing 2019 R1 content
[platform/upstream/dldt.git] / model-optimizer / mo / front / caffe / custom_layers_mapping_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 import unittest
17
18 from google.protobuf import text_format
19
20 from mo.front.caffe.custom_layers_mapping import proto_extractor
21 from mo.front.caffe.proto import caffe_pb2
22
23
24 class TestCustomLayerMapping(unittest.TestCase):
25     def test_extractor_custom_layer(self):
26         expected_conv_params = {
27             'num_output': 64,
28             'pad': 1,
29             'kernel_size': 3,
30             'stride': 1,
31             'bias_term': True,
32             'axis': 1,
33             'engine': 'caffe.ConvolutionParameter.DEFAULT',
34             'group': 1,
35             'force_nd_im2col': False,
36             'pad_h': 0,
37             'pad_w': 0
38         }
39         layer = """
40                 name: "conv"
41                 type: "Convolution"
42                 bottom: "input"
43                 top: "conv"
44                 convolution_param {
45                     num_output: 64
46                     pad: 1
47                     kernel_size: 3
48                     stride: 1
49                 }
50                 """
51         mapping = {
52             'NativeType': 'Convolution',
53             'hasParam': 'true',
54             'protoParamName': 'convolution_param'
55         }
56         proto = caffe_pb2.LayerParameter()
57         text_format.Merge(layer, proto)
58         attrs = proto_extractor(proto, None, mapping, False, False)
59         for key, val in expected_conv_params.items():
60             if key == 'bias_term' or key == 'force_nd_im2col':
61                 self.assertTrue(str(int(val)) == attrs[key])
62             else:
63                 self.assertTrue(str(val) == attrs[key])