* Allign attribute values in spec * Fix wrong attribute name in spec * Add `get_boolean_attr` function * Add get_type function * Update conv attrs * Update copyright year * Add missed attrs, update copyright year * Fix year in copyright * Update ir parser for RegionYolo layer * Remove wrong changes for BinaryConvolution * Remove get_type function as it no more needed * Update check for reduce ops * Fix error in reduce attrs * Update ir_engine to work with bool attrs * Update DetectionOutput operation * Update PSROIPooling * remove redundant attrs from spec * Update get_boolean_attr function * Update Reduce operations * Update DetectionOutput specification * Update specification for missed attrs * Apply comments * Fixconst renumbering logic * Fix typo * Change default value to fix broken shape inference * Add additional asserts * Add comment * model-optimizer/mo/utils/ir_reader/layer_to_class.py * Sort imports * Sort imports * Update year in copyright * Update const * Remove changes from const restoring * Rename function * remove unnecessary changes * model-optimizer/mo/front/extractor_test.py * Fix year in copyright * Add soft_get * Fix exclude-pad attribute name for AvgPool operation * Update exclude_pad attribute values * Remove useless comment * Update examples in specification * Remove file added by mistake * Resolve comments * Resolve comments * Add return value * Allign global_pool attribute
156 lines
7.9 KiB
Python
156 lines
7.9 KiB
Python
"""
|
|
Copyright (C) 2018-2021 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 unittest
|
|
|
|
import numpy as np
|
|
|
|
from mo.graph.graph import Node
|
|
from mo.ops.pooling import Pooling
|
|
from mo.utils.unittest.graph import build_graph
|
|
from mo.utils.error import Error
|
|
|
|
nodes_attributes = {'node_1': {'value': None, 'kind': 'data'},
|
|
'pool': {'type': 'Pooling', 'value': None, 'kind': 'op'},
|
|
'node_2': {'value': None, 'kind': 'data'},
|
|
'op_output': { 'kind': 'op', 'op': 'Result'},
|
|
}
|
|
|
|
|
|
class TestPoolingPartialInfer(unittest.TestCase):
|
|
def test_pooling_infer(self):
|
|
graph = build_graph(nodes_attributes,
|
|
[('node_1', 'pool'),
|
|
('pool', 'node_2'),
|
|
('node_2', 'op_output')
|
|
],
|
|
{'node_2': {'shape': None},
|
|
'node_1': {'shape': np.array([1, 3, 256, 256])},
|
|
'pool': {'window': np.array([1, 1, 1, 1]), 'stride': np.array([1, 1, 2, 2]),
|
|
'pad': np.array([[0, 0], [0, 0], [3, 3], [3, 3]]),
|
|
'pad_spatial_shape': np.array([[3, 3], [3, 3]]),
|
|
'pool_method': 'avg', 'exclude_pad': False, 'global_pool': False,
|
|
'output_spatial_shape': None, 'output_shape': None,
|
|
'kernel_spatial': np.array([3, 3]), 'spatial_dims': np.array([2, 3]),
|
|
'channel_dims': np.array([1]), 'batch_dims': np.array([0]),
|
|
'pooling_convention': 'full'}
|
|
})
|
|
|
|
pool_node = Node(graph, 'pool')
|
|
|
|
Pooling.infer(pool_node)
|
|
exp_shape = np.array([1, 3, 131, 131])
|
|
res_shape = graph.node['node_2']['shape']
|
|
for i in range(0, len(exp_shape)):
|
|
self.assertEqual(exp_shape[i], res_shape[i])
|
|
|
|
def test_pooling_infer_decrement_input_spatial(self):
|
|
graph = build_graph(nodes_attributes,
|
|
[('node_1', 'pool'),
|
|
('pool', 'node_2'),
|
|
('node_2', 'op_output')
|
|
],
|
|
{'node_2': {'shape': None},
|
|
'node_1': {'shape': np.array([1, 3, 224, 224])},
|
|
'pool': {'window': np.array([1, 1, 1, 1]), 'stride': np.array([1, 1, 3, 3]),
|
|
'pad': np.array([[0, 0], [0, 0], [3, 3], [3, 3]]),
|
|
'pad_spatial_shape': np.array([[1, 1], [1, 1]]),
|
|
'pool_method': 'avg', 'exclude_pad': False, 'global_pool': False,
|
|
'output_spatial_shape': None, 'output_shape': None,
|
|
'kernel_spatial': np.array([3, 3]), 'spatial_dims': np.array([2, 3]),
|
|
'channel_dims': np.array([1]), 'batch_dims': np.array([0]),
|
|
'pooling_convention': 'full'}
|
|
})
|
|
|
|
pool_node = Node(graph, 'pool')
|
|
|
|
Pooling.infer(pool_node)
|
|
exp_shape = np.array([1, 3, 75, 75])
|
|
res_shape = graph.node['node_2']['shape']
|
|
for i in range(0, len(exp_shape)):
|
|
self.assertEqual(exp_shape[i], res_shape[i])
|
|
|
|
def test_pooling_infer_no_convention(self):
|
|
graph = build_graph(nodes_attributes,
|
|
[('node_1', 'pool'),
|
|
('pool', 'node_2'),
|
|
('node_2', 'op_output')
|
|
],
|
|
{'node_2': {'shape': None},
|
|
'node_1': {'shape': np.array([1, 3, 256, 256])},
|
|
'pool': {'window': np.array([1, 1, 1, 1]), 'stride': np.array([1, 1, 2, 2]),
|
|
'pad': np.array([[0, 0], [0, 0], [3, 3], [3, 3]]),
|
|
'pad_spatial_shape': np.array([[3, 3], [3, 3]]),
|
|
'pool_method': 'avg', 'exclude_pad': False, 'global_pool': False,
|
|
'output_spatial_shape': None, 'output_shape': None,
|
|
'kernel_spatial': np.array([3, 3]), 'spatial_dims': np.array([2, 3]),
|
|
'channel_dims': np.array([1]), 'batch_dims': np.array([0])}
|
|
})
|
|
|
|
pool_node = Node(graph, 'pool')
|
|
|
|
Pooling.infer(pool_node)
|
|
exp_shape = np.array([1, 3, 130, 130])
|
|
res_shape = graph.node['node_2']['shape']
|
|
for i in range(0, len(exp_shape)):
|
|
self.assertEqual(exp_shape[i], res_shape[i])
|
|
|
|
def test_pooling_infer_no_shape(self):
|
|
graph = build_graph(nodes_attributes,
|
|
[('node_1', 'pool'),
|
|
('pool', 'node_2'),
|
|
('node_2', 'op_output')
|
|
],
|
|
{'node_2': {'shape': None},
|
|
'node_1': {'shape': None},
|
|
'pool': {'window': np.array([1, 1, 1, 1]), 'stride': np.array([1, 1, 2, 2]),
|
|
'pad': np.array([[0, 0], [0, 0], [3, 3], [3, 3]]),
|
|
'pad_spatial_shape': np.array([[3, 3], [3, 3]]),
|
|
'pool_method': 'avg', 'exclude_pad': False,
|
|
'output_spatial_shape': None, 'output_shape': None,
|
|
'kernel_spatial': np.array([3, 3]), 'spatial_dims': np.array([2, 3]),
|
|
'channel_dims': np.array([1]), 'batch_dims': np.array([0]),
|
|
'pooling_convention': 'full'}
|
|
})
|
|
|
|
pool_node = Node(graph, 'pool')
|
|
Pooling.infer(pool_node)
|
|
res_shape = graph.node['node_2']['shape']
|
|
self.assertIsNone(res_shape)
|
|
|
|
def test_pooling_infer_wrong_input_shape(self):
|
|
graph = build_graph(nodes_attributes,
|
|
[('node_1', 'pool'),
|
|
('pool', 'node_2'),
|
|
('node_2', 'op_output')
|
|
],
|
|
{'node_2': {'shape': None},
|
|
'node_1': {'shape': np.array([1, 3, 1, 1])},
|
|
'pool': {'window': np.array([1, 1, 5, 5]), 'stride': np.array([1, 1, 2, 2]),
|
|
'pad': np.array([[0, 0], [0, 0], [1, 1], [1, 1]]),
|
|
'pad_spatial_shape': np.array([[1, 1], [1, 1]]),
|
|
'pool_method': 'avg', 'exclude_pad': False, 'global_pool': False,
|
|
'output_spatial_shape': None, 'output_shape': None,
|
|
'kernel_spatial': np.array([3, 3]), 'spatial_dims': np.array([2, 3]),
|
|
'channel_dims': np.array([1]), 'batch_dims': np.array([0]),
|
|
'pooling_convention': 'full'}
|
|
})
|
|
|
|
pool_node = Node(graph, 'pool')
|
|
|
|
with self.assertRaises(Error):
|
|
Pooling.infer(pool_node)
|