Unverified Commit 75bb6d2d authored by Justin Chu's avatar Justin Chu Committed by GitHub
Browse files

Fix ONNX conversion script opset argument type (#739)

The opset argument should be an `int` but was set as a `str`.
parent 906e4105
...@@ -206,7 +206,7 @@ if __name__ == "__main__": ...@@ -206,7 +206,7 @@ if __name__ == "__main__":
parser.add_argument( parser.add_argument(
"--opset", "--opset",
default=14, default=14,
type=str, type=int,
help="The version of the ONNX operator set to use.", help="The version of the ONNX operator set to use.",
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment