26 lines
763 B
Python
26 lines
763 B
Python
# Copyright (C) 2018-2021 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
from extensions.ops.proposal import ProposalOp
|
|
from mo.front.caffe.extractor import register_caffe_python_extractor
|
|
from mo.graph.graph import Graph
|
|
from mo.ops.op import Op
|
|
|
|
|
|
class ProposalPythonExampleOp(Op):
|
|
op = 'Proposal'
|
|
|
|
def __init__(self, graph: Graph, attrs: dict):
|
|
mandatory_props = {
|
|
'type': __class__.op,
|
|
'op': __class__.op,
|
|
'post_nms_topn': 300,
|
|
'infer': ProposalOp.proposal_infer
|
|
}
|
|
|
|
super().__init__(graph, mandatory_props, attrs)
|
|
|
|
|
|
register_caffe_python_extractor(ProposalPythonExampleOp, 'rpn.proposal_layer.ProposalLayer.example')
|
|
Op.excluded_classes.append(ProposalPythonExampleOp)
|