Replies: 1 comment 1 reply
-
The ONNX format is a protobuf, so you can write it directly using the C++ Protobuf library from your custom implementation. The spec is documented here - https://github.com/onnx/onnx/blob/main/docs/IR.md. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I have a custom neural network implemented in C++ and I’m interested in exporting this network to ONNX format. I’m currently using the ONNX Runtime C++ API, but I’m finding it challenging to convert my custom network into an ONNX model.
I would prefer to stick with C++ for this task and not use Python. Could you provide some guidance or point me to any resources that might help with this process, specifically within a C++ context?
Best regards,
Damien
Beta Was this translation helpful? Give feedback.
All reactions