mirror of
https://github.com/open-mmlab/mmrazor.git
synced 2025-06-03 15:02:54 +08:00
14 lines
282 B
Python
14 lines
282 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
supernet = dict(
|
|
type='MockModel',
|
|
)
|
|
|
|
model = dict(
|
|
type='MockAlgorithm',
|
|
architecture=supernet,
|
|
_fix_subnet_ = {
|
|
'architecture.mutable1': 'conv1',
|
|
'architecture.mutable2': 'conv2',
|
|
}
|
|
)
|