Help output typo fix

Fixes a typo in the help output for `symbolic_shape_infer`
This commit is contained in:
pranavm-nvidia 2020-03-05 14:47:13 -08:00 committed by Changming Sun
parent 5be6665b86
commit cfd18b583a

View file

@ -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)