Files
openvino/model-optimizer/extensions/front/onnx/reverse_sequence_ext.py
Evgenya Stepyreva 5c2eb05990 [ MO ONNX ] Resize-11 clear error message (#620)
* Small refactoring of extractors

* [ MO ] Throwing an exception while extracting Resize-11 which is not supported
2020-05-27 08:09:15 +03:00

37 lines
1.2 KiB
Python

"""
Copyright (c) 2019 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.
"""
from extensions.ops.reverse_sequence import ReverseSequence
from mo.front.extractor import FrontExtractorOp
from mo.front.onnx.extractors.utils import onnx_attr
class ReverseSequenceExtractor(FrontExtractorOp):
op = 'ReverseSequence'
enabled = True
@classmethod
def extract(cls, node):
batch_axis = onnx_attr(node, 'batch_axis', 'i', default=1)
time_axis = onnx_attr(node, 'time_axis', 'i', default=0)
attrs = {
'batch_axis': batch_axis,
'seq_axis': time_axis,
}
ReverseSequence.update_node_stat(node, attrs)
return cls.enabled