Describe MakeStateful transformation in MO help (#10536)

* Update --transform help for MakeStateful transformation

* add quotes
This commit is contained in:
Ivan Tikhonov
2022-02-21 09:55:26 +03:00
committed by GitHub
parent 73a6d50dbc
commit e89c7ed8e5

View File

@@ -365,8 +365,10 @@ def get_common_cli_parser(parser: argparse.ArgumentParser = None):
'Usage: "--transform transformation_name1[args],transformation_name2..." ' +
'where [args] is key=value pairs separated by semicolon. ' +
'Examples: "--transform LowLatency2" or ' +
' "--transform LowLatency2[use_const_initializer=False]" ' +
'Available transformations: "LowLatency2"',
' "--transform LowLatency2[use_const_initializer=False]" or ' +
' "--transform \"MakeStateful[param_res_names='
'{\'input_name_1\':\'output_name_1\',\'input_name_2\':\'output_name_2\'}]\"" ' +
'Available transformations: "LowLatency2", "MakeStateful"',
default="")
common_group.add_argument('--disable_fusing',
help='Turn off fusing of linear operations to Convolution',