From 9adc89e3ba5acc53c6ed00c8c2ba711a43ef572a Mon Sep 17 00:00:00 2001 From: enpasos Date: Sat, 20 Jun 2026 07:59:36 +0200 Subject: [PATCH 1/2] Add JAX conversion path using jax2onnx Signed-off-by: enpasos --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 5900e43..36fe2e2 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ Below is a list of services that can output ONNX models customized for your data | [Chainer](https://chainer.org/) | [chainer/onnx-chainer](https://github.com/chainer/onnx-chainer) | [Example](tutorials/ChainerOnnxExport.ipynb) | | [Cognitive Toolkit (CNTK)](https://learn.microsoft.com/en-us/cognitive-toolkit//) | [built-in](https://docs.microsoft.com/en-us/cognitive-toolkit/setup-cntk-on-your-machine) | [Example](tutorials/CntkOnnxExport.ipynb) | | [CoreML (Apple)](https://developer.apple.com/documentation/coreml) | [onnx/onnxmltools](https://github.com/onnx/onnxmltools) | [Example](https://github.com/onnx/onnx-docker/blob/master/onnx-ecosystem/converter_scripts/coreml_onnx.ipynb) | +| [JAX](https://docs.jax.dev/) | [enpasos/jax2onnx](https://github.com/enpasos/jax2onnx) / [pip install jax2onnx](https://pypi.org/project/jax2onnx/) | [Getting Started](https://enpasos.github.io/jax2onnx/user_guide/getting_started/) | | [Keras](https://github.com/keras-team/keras) | [onnx/tensorflow-onnx](https://github.com/onnx/tensorflow-onnx) | [Example](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/keras-resnet50.ipynb) | n/a | | [LibSVM](https://github.com/cjlin1/libsvm) | [onnx/onnxmltools](https://github.com/onnx/onnxmltools) | [Example](https://github.com/onnx/onnx-docker/blob/master/onnx-ecosystem/converter_scripts/libsvm_onnx.ipynb) | n/a | | [LightGBM](https://github.com/Microsoft/LightGBM) | [onnx/onnxmltools](https://github.com/onnx/onnxmltools) | [Example](https://github.com/onnx/onnx-docker/blob/master/onnx-ecosystem/converter_scripts/lightgbm_onnx.ipynb) | n/a | From 5454eef1b05fee2368f0ba22db8931526c32555c Mon Sep 17 00:00:00 2001 From: enpasos Date: Sat, 20 Jun 2026 08:18:46 +0200 Subject: [PATCH 2/2] Clarify jax2onnx installation link Signed-off-by: enpasos --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 36fe2e2..30e0e46 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Below is a list of services that can output ONNX models customized for your data | [Chainer](https://chainer.org/) | [chainer/onnx-chainer](https://github.com/chainer/onnx-chainer) | [Example](tutorials/ChainerOnnxExport.ipynb) | | [Cognitive Toolkit (CNTK)](https://learn.microsoft.com/en-us/cognitive-toolkit//) | [built-in](https://docs.microsoft.com/en-us/cognitive-toolkit/setup-cntk-on-your-machine) | [Example](tutorials/CntkOnnxExport.ipynb) | | [CoreML (Apple)](https://developer.apple.com/documentation/coreml) | [onnx/onnxmltools](https://github.com/onnx/onnxmltools) | [Example](https://github.com/onnx/onnx-docker/blob/master/onnx-ecosystem/converter_scripts/coreml_onnx.ipynb) | -| [JAX](https://docs.jax.dev/) | [enpasos/jax2onnx](https://github.com/enpasos/jax2onnx) / [pip install jax2onnx](https://pypi.org/project/jax2onnx/) | [Getting Started](https://enpasos.github.io/jax2onnx/user_guide/getting_started/) | +| [JAX](https://docs.jax.dev/) | [enpasos/jax2onnx](https://github.com/enpasos/jax2onnx) / `pip install jax2onnx` ([PyPI](https://pypi.org/project/jax2onnx/)) | [Getting Started](https://enpasos.github.io/jax2onnx/user_guide/getting_started/) | | [Keras](https://github.com/keras-team/keras) | [onnx/tensorflow-onnx](https://github.com/onnx/tensorflow-onnx) | [Example](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/keras-resnet50.ipynb) | n/a | | [LibSVM](https://github.com/cjlin1/libsvm) | [onnx/onnxmltools](https://github.com/onnx/onnxmltools) | [Example](https://github.com/onnx/onnx-docker/blob/master/onnx-ecosystem/converter_scripts/libsvm_onnx.ipynb) | n/a | | [LightGBM](https://github.com/Microsoft/LightGBM) | [onnx/onnxmltools](https://github.com/onnx/onnxmltools) | [Example](https://github.com/onnx/onnx-docker/blob/master/onnx-ecosystem/converter_scripts/lightgbm_onnx.ipynb) | n/a |