24 lines
771 B
Python
24 lines
771 B
Python
# Copyright (C) 2018-2021 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
from extensions.ops.normalize import NormalizeOp
|
|
from mo.front.caffe.collect_attributes import collect_attributes
|
|
from mo.front.caffe.extractors.utils import weights_biases
|
|
from mo.front.extractor import FrontExtractorOp
|
|
|
|
|
|
class NormalizeFrontExtractor(FrontExtractorOp):
|
|
op = 'Normalize'
|
|
enabled = True
|
|
|
|
@classmethod
|
|
def extract(cls, node):
|
|
proto_layer = node.pb
|
|
param = proto_layer.norm_param
|
|
|
|
attrs = collect_attributes(param, enable_flattening_nested_params=True)
|
|
attrs.update(weights_biases(False, node.model_pb))
|
|
# update the attributes of the node
|
|
NormalizeOp.update_node_stat(node, attrs)
|
|
return cls.enabled
|