Publishing 2019 R1 content
[platform/upstream/dldt.git] / model-optimizer / mo / ops / unsqueeze.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 numpy as np
18
19 from mo.ops.op import Op, PermuteAttrs
20
21
22 class Unsqueeze(Op):
23     op = 'Unsqueeze'
24     enabled = False
25
26     def __init__(self, graph, attrs: dict):
27         super().__init__(graph, {
28             'kind': 'op',
29             'type': 'Reshape',
30             'op': __class__.op,
31             'in_ports_count': 2,
32             'out_ports_count': 1,
33             'infer': __class__.infer
34         }, attrs)
35
36     @staticmethod
37     def infer(node):
38         unsqueeze_dims = np.array(node.unsqueeze_dims)
39         value = node.in_node(0).value
40         shape = node.in_node(0).shape
41
42         for dim in unsqueeze_dims:
43             shape = np.insert(shape, dim, 1)
44
45         node.out_node().shape = np.array(shape)
46         node['dim'] = shape
47         PermuteAttrs.create_permute_attrs(node, attrs=[('dim', 'output:0')])
48
49         if value is not None:
50             value = np.reshape(value, shape)
51             node.out_node().value = np.array(value)