Releases: onnx/onnxmltools
Releases · onnx/onnxmltools
v1.6.0
v1.5.1
v1.5.0
onnxmltools version 1.5.0 is now available! This version features ONNX Opset 10 support and code coverage.
How do I use the latest onnxmltools package?
pip install onnxmltools --upgrade
python -c "import onnxmltools"
This package includes converters for LightGBM, CoreML, Spark ML, LibSVM, XGBoost, and wrappers for conversion from scikit-learn and Keras.
Highlights since the last release
1.4 release
v1.4.1 Update __init__.py
v1.4.0 rc1 pre-release.
v1.4.0-rc1 upgrade package version for the release.
v1.3.2
The final release for onnxmltools 1.3
switch to the explicit padding if the input shape is available. (#198) * switch to the explicit padding if the input shape is available. * upgrade the version. * fix for the nchw mode. * output_padding could be None.
1.3.0-rc1
- Multiple opset support: Enables user to generate model based on a specified ONNX opset
- ONNX opset 8: Adds support for ONNX opset 8 in all converters
- ONNX model optimization: Reduces redundant operators like transpose and identity in the converted model
- Convert channel_last to channel_first: Enables converted model to run on WinML even if the original model is channel_last, since the WinML API only supports channel_first models
- onnxruntime as backend test: Uses onnxruntime as the backend to test the converted model; improves code quality and compatibility between converters and the inference engine
- Separate LightGBM from scikit-learn converter: Improves code organization