-
Notifications
You must be signed in to change notification settings - Fork 477
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
export to onnx #51
Comments
I'm wondering this too. I'm trying this in my own fork but I'm not very experienced and it's not quite working. |
Update:
However, there are some issues. The torch.var() operators in the model are NOT supported by any ONNX version yet. Does anyone know a work around on how to get rid of the torch.var operators and replace them with something else and still have the model work? |
Update I fixed it! just change all torch.var to torch.std (...) ** 2 and it should export an ONNX model! |
can the weights to be exported to onnx?
The text was updated successfully, but these errors were encountered: