-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Max supported opset is very old #296
Comments
Hey, I'm assuming you're referencing the torch.onnx.export() api. If you can try torch.onnx.export(...,dynamo=True) you might have a better outcome! |
Actually my use-case is in PySpark and not torch. From my understanding, |
@MaanavD any direction for how we could bump the opset version? |
@addisonklinke going to add @gramalingam to this thread, I think he'd know best! |
@xadupre knows more about these converters. |
DEFAULT_OPSET_NUMBER
is currently 15 and was last updated in Nov 2021. This corresponds to a max ofonnx==1.10.2
from the official versioning table which is 6 minor versions behind the latest 1.16.0. Additionally, 1.10.2 only has wheels for Python <=3.9 which is EOL Oct 2025 and makes using a more modern env difficultWhat are the limitations in upgrading this / why is it lagging so far behind the
onnx
releases?The text was updated successfully, but these errors were encountered: