* Added transformation config to support automl efficientdet-4 model * Added configuration file to convert Automl EfficientDet model * Updated unit test for Pack * Added instruction on how to convert EfficientDet Tensorflow model * Updated documentation on how to convert EfficientDet model * Updated a documentation with instruction on how to convert Automl EfficientDet.
77 lines
2.9 KiB
Python
77 lines
2.9 KiB
Python
"""
|
|
Copyright (C) 2018-2020 Intel Corporation
|
|
|
|
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.
|
|
"""
|
|
|
|
import numpy as np
|
|
|
|
from mo.front.common.partial_infer.utils import int64_array
|
|
from mo.graph.perm_inputs import PermuteInputs
|
|
from mo.ops.op import Op
|
|
from mo.utils.error import Error
|
|
|
|
|
|
class Unsqueeze(Op):
|
|
"""
|
|
The operation that inserts dimensions of size one into specific positions of the input layer. The dimensions are
|
|
specified in the second input.
|
|
"""
|
|
op = 'Unsqueeze'
|
|
enabled = False
|
|
|
|
def __init__(self, graph, attrs: dict):
|
|
super().__init__(graph, {
|
|
'op': self.op,
|
|
'type': self.op,
|
|
'version': 'opset1',
|
|
'unsqueeze_dims': None,
|
|
'reinterp_shape': True,
|
|
'in_ports_count': 2,
|
|
'out_ports_count': 1,
|
|
'infer': self.infer
|
|
}, attrs)
|
|
|
|
@staticmethod
|
|
def infer(node):
|
|
if len(node.in_nodes()) <= 1:
|
|
raise Error('There is no input with unsqueeze dims for the node {}'.format(node.soft_get('name')))
|
|
unsqueeze_dims = node.in_port(1).data.get_value()
|
|
if unsqueeze_dims is None:
|
|
raise Error('The dimensions to unsqueeze are not defined for the node {}'.format(node.soft_get('name')))
|
|
unsqueeze_dims = int64_array(unsqueeze_dims)
|
|
|
|
input_value = node.in_port(0).data.get_value()
|
|
input_shape = node.in_port(0).data.get_shape()
|
|
|
|
# TODO remove the following line when the Inference Engine plugins support 0D tensors
|
|
if unsqueeze_dims.ndim == 0:
|
|
unsqueeze_dims = int64_array([unsqueeze_dims.item()])
|
|
|
|
# make dimensions positive to correctly translate from NHWC to NCHW layout
|
|
unsqueeze_dims = int64_array([dim + len(node.in_port(0).data.get_shape()) + 1 if dim < 0 else dim
|
|
for dim in unsqueeze_dims])
|
|
if node.in_port(1).get_source().node.op == 'Const':
|
|
node.in_port(1).data.set_value(unsqueeze_dims)
|
|
|
|
output_shape = int64_array(input_shape.copy())
|
|
for dim in unsqueeze_dims:
|
|
output_shape = np.insert(output_shape, dim, 1)
|
|
|
|
if input_value is not None:
|
|
node.out_port(0).data.set_value(input_value.reshape(output_shape))
|
|
else:
|
|
node.out_port(0).data.set_shape(int64_array(output_shape))
|
|
|
|
PermuteInputs().set_input_permutation(node.in_node(1), node, 'input:0', 'axis')
|