mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-12 17:57:38 +00:00
Help output typo fix
Fixes a typo in the help output for `symbolic_shape_infer`
This commit is contained in:
parent
5be6665b86
commit
cfd18b583a
1 changed files with 1 additions and 1 deletions
|
|
@ -1246,7 +1246,7 @@ class SymbolicShapeInference:
|
|||
def parse_arguments():
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('--input', required=True, help='The input model file')
|
||||
parser.add_argument('--output', help='The input model file')
|
||||
parser.add_argument('--output', help='The output model file')
|
||||
parser.add_argument('--auto_merge', help='Automatically merge symbolic dims when confliction happens', action='store_true', default=False)
|
||||
parser.add_argument('--int_max', help='maximum value for integer to be treated as boundless for ops like slice', type=int, default=2**31 - 1)
|
||||
parser.add_argument('--guess_output_rank', help='guess output rank to be the same as input 0 for unknown ops', action='store_true', default=False)
|
||||
|
|
|
|||
Loading…
Reference in a new issue