Add JAX conversion path using jax2onnx#298
Open
enpasos wants to merge 2 commits into
Open
Conversation
Signed-off-by: enpasos <matthias.unverzagt@enpasos.com>
There was a problem hiding this comment.
Pull request overview
Adds JAX to the “Converting to ONNX format” table so users can discover a JAX → ONNX conversion option via jax2onnx.
Changes:
- Add a new “JAX” row pointing to
enpasos/jax2onnxand its getting-started documentation.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Signed-off-by: enpasos <matthias.unverzagt@enpasos.com>
andife
pushed a commit
to onnx/onnx
that referenced
this pull request
Jun 20, 2026
## Summary This PR adds `jax2onnx` to the short converter list in the ONNX converter documentation. ## Motivation The converter page points users to framework-specific libraries for converting models to ONNX. It also links to the broader `onnx/tutorials` converter table. JAX is currently not represented in the short converter list. `jax2onnx` provides a community-maintained JAX to ONNX conversion path and is published on PyPI as `jax2onnx`. This is a small documentation-only update to help users discover an available JAX conversion path. ## Related - Companion tutorials PR: onnx/tutorials#298 ## Scope - Adds one bullet to `docs/docsgen/source/intro/converters.md`. - Does not add new code. - Does not imply official ONNX endorsement. ## Validation - `git diff --check` ## References - Repository: https://github.com/enpasos/jax2onnx - PyPI: https://pypi.org/project/jax2onnx/ - Documentation: https://enpasos.github.io/jax2onnx/ - Getting Started: https://enpasos.github.io/jax2onnx/user_guide/getting_started/ - Validation guide: https://enpasos.github.io/jax2onnx/user_guide/validation/ - Known limitations: https://enpasos.github.io/jax2onnx/user_guide/known_limitations/ ## Disclosure I maintain `jax2onnx`. --------- Signed-off-by: enpasos <matthias.unverzagt@enpasos.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds a JAX conversion path to the "Converting to ONNX format" table using
jax2onnx.Motivation
The table lists framework-specific paths for converting models to ONNX, but JAX is currently not represented.
jax2onnxis a community-maintained converter for exporting JAX-derived callables/models to ONNX. It also documents common Flax and Equinox usage.The package is published on PyPI as
jax2onnx; the current release at the time of this PR is0.14.1from June 18, 2026.This is a documentation-only update intended to help ONNX users discover an available JAX -> ONNX conversion path.
Scope
Validation
git diff --checkReferences
Disclosure
I maintain
jax2onnx.