Files
openvino/model-optimizer/extensions/ops/priorbox_clustered.py
openvino-pushbot 866530fb04 Publishing R3
2018-10-16 13:45:03 +03:00

75 lines
2.1 KiB
Python

"""
Copyright (c) 2018 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 networkx as nx
import numpy as np
from mo.front.extractor import attr_getter
from mo.graph.graph import Node
from mo.ops.op import Op
class PriorBoxClusteredOp(Op):
op = 'PriorBoxClustered'
def __init__(self, graph: nx.MultiDiGraph, attrs: dict):
mandatory_props = {
'type': __class__.op,
'op': __class__.op,
'infer': PriorBoxClusteredOp.priorbox_clustered_infer
}
super().__init__(graph, mandatory_props, attrs)
def supported_attrs(self):
return [
'width',
'height',
'flip',
'clip',
'variance',
'img_size',
'img_h',
'img_w',
'step',
'step_h',
'step_w',
'offset'
]
def backend_attrs(self):
return [
'flip',
'clip',
'img_size',
'img_h',
'img_w',
'step',
'step_h',
'step_w',
'offset',
('variance', lambda node: attr_getter(node, 'variance')),
('width', lambda node: attr_getter(node, 'width')),
('height', lambda node: attr_getter(node, 'height'))
]
@staticmethod
def priorbox_clustered_infer(node: Node):
data_shape = node.in_node(0).shape
num_ratios = len(node.width)
res_prod = data_shape[2] * data_shape[3] * num_ratios * 4
node.out_node(0).shape = np.array([1, 2, res_prod], dtype=np.int64)