Files
openvino/model-optimizer/extensions/ops/priorbox.py

94 lines
2.9 KiB
Python
Raw Normal View History

2018-10-16 13:45:03 +03:00
"""
2019-04-12 18:25:53 +03:00
Copyright (c) 2018-2019 Intel Corporation
2018-10-16 13:45:03 +03:00
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
2018-11-23 16:19:43 +03:00
from mo.front.common.layout import get_width_dim, get_height_dim
2018-10-16 13:45:03 +03:00
from mo.front.extractor import attr_getter
2019-04-12 18:25:53 +03:00
from mo.graph.graph import Node, Graph
2018-10-16 13:45:03 +03:00
from mo.ops.op import Op
class PriorBoxOp(Op):
op = 'PriorBox'
2019-04-12 18:25:53 +03:00
def __init__(self, graph: Graph, attrs: dict):
2018-10-16 13:45:03 +03:00
mandatory_props = {
'type': __class__.op,
'op': __class__.op,
'flip': 1,
'max_size': np.array([]),
'min_size': np.array([]),
'aspect_ratio': np.array([]),
2019-04-12 18:25:53 +03:00
'in_ports_count': 2,
'out_ports_count': 1,
2018-10-16 13:45:03 +03:00
'infer': PriorBoxOp.priorbox_infer
}
super().__init__(graph, mandatory_props, attrs)
def supported_attrs(self):
return [
'min_size',
'max_size',
'aspect_ratio',
'flip',
'clip',
'variance',
'img_size',
'img_h',
'img_w',
'step',
'step_h',
'step_w',
'offset',
2018-10-16 13:45:03 +03:00
]
def backend_attrs(self):
return [
'flip',
'clip',
'step',
'offset',
('min_size', lambda node: attr_getter(node, 'min_size')),
('max_size', lambda node: attr_getter(node, 'max_size')),
('aspect_ratio', lambda node: attr_getter(node, 'aspect_ratio')),
('variance', lambda node: attr_getter(node, 'variance')),
]
@staticmethod
def priorbox_infer(node: Node):
2018-11-23 16:19:43 +03:00
layout = node.graph.graph['layout']
2018-10-16 13:45:03 +03:00
data_shape = node.in_node(0).shape
# calculate all different aspect_ratios (the first one is always 1)
# in aspect_ratio 1/x values will be added for all except 1 if flip is True
ar_seen = [1.0]
ar_seen.extend(node.aspect_ratio.copy())
if node.flip:
for s in node.aspect_ratio:
ar_seen.append(1.0/s)
ar_seen = np.unique(np.array(ar_seen).round(decimals=6))
num_ratios = 0
if len(node.min_size) > 0:
num_ratios = len(ar_seen) * len(node.min_size)
num_ratios = num_ratios + len(node.max_size)
2018-11-23 16:19:43 +03:00
res_prod = data_shape[get_height_dim(layout, 4)] * data_shape[get_width_dim(layout, 4)] * num_ratios * 4
2018-10-16 13:45:03 +03:00
node.out_node(0).shape = np.array([1, 2, res_prod], dtype=np.int64)