Fix UnicodeEncodeError on Python 3.6 (#9285)

This commit is contained in:
Ilya Naumov 2022-01-27 14:00:38 +03:00 committed by GitHub
parent bc70b2b68b
commit 1be838576c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -351,7 +351,7 @@ def get_common_cli_parser(parser: argparse.ArgumentParser = None):
' for example: --layout name1(nchw),name2(nc). It is possible to instruct '
'ModelOptimizer to change layout, for example: '
'--layout name1(nhwc->nchw),name2(cn->nc). Also "*" in long layout form can be used'
' to fuse dimensions, for example [n,c,...]->[n*c,].',
' to fuse dimensions, for example [n,c,...]->[n*c,...].',
default=())
# TODO: isn't it a weights precision type
common_group.add_argument('--data_type',