forked from mindspore-Ecosystem/mindspore
!7636 fix_export_bug
Merge pull request !7636 from baiyangfan/mode_export_bug
This commit is contained in:
commit
bc1d33c62d
|
@ -570,8 +570,8 @@ def _quant_export(network, *inputs, file_format, **kwargs):
|
||||||
supported_formats = ['AIR', 'MINDIR']
|
supported_formats = ['AIR', 'MINDIR']
|
||||||
quant_mode_formats = ['AUTO', 'MANUAL']
|
quant_mode_formats = ['AUTO', 'MANUAL']
|
||||||
|
|
||||||
mean = kwargs['mean'] if kwargs.get('mean', None) else 127.5
|
mean = 127.5 if kwargs.get('mean', None) is None else kwargs['mean']
|
||||||
std_dev = kwargs['std_dev'] if kwargs.get('std_dev', None) else 127.5
|
std_dev = 127.5 if kwargs.get('std_dev', None) is None else kwargs['std_dev']
|
||||||
|
|
||||||
quant_mode = kwargs['quant_mode']
|
quant_mode = kwargs['quant_mode']
|
||||||
if quant_mode not in quant_mode_formats:
|
if quant_mode not in quant_mode_formats:
|
||||||
|
|
Loading…
Reference in New Issue