Skip to content

Releases: onnx/onnxmltools

v1.6.0

06 Nov 19:35
89213bc
Compare
Choose a tag to compare

Support opset 11

v1.5.1

04 Oct 18:11
2a76db7
Compare
Choose a tag to compare

Major updates:

  1. Moving onnxconverter-common package from onnxmltools repo
  2. Fix CI/nightly build
  3. Fix ImageScaler bias for opset 10
  4. Fix lightgbm.Booster
  5. Fixed XGboost classifier converter output labels
  6. Set default_batch_size to 'None'

v1.5.0

11 Jun 21:14
cf9d147
Compare
Choose a tag to compare

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

  • Updating onnxmltools package version and requirements to 1.5.0 (#315)
  • Opset 10 Updates
    • [Opset 10] Updates for thresholded relu (#308)
    • [Opset 10] Deprecate Upsample, create Resize op (#303)
    • [Opset 10] Pooling operator updates: AveragePool, MaxPool (#296)
    • Added apply_slice function to enable multiple versions of Slice (#291)
  • Include code coverage / Improve CI Builds
    • Run code coverage on linux CI (#301)
    • Add support for Py3.7, onnx 1.5, onnxruntime 0.4 (#293)
  • Fixing input to CoreML multiply for LeakyReLU (#297)
  • Documentation update: Spark ML readme files (#289)

1.4 release

18 Apr 20:47
94604e7
Compare
Choose a tag to compare
v1.4.1

Update __init__.py

v1.4.0 rc1 pre-release.

02 Apr 01:11
Compare
Choose a tag to compare
Pre-release
v1.4.0-rc1

upgrade package version for the release.

v1.3.2

27 Feb 01:36
fc60194
Compare
Choose a tag to compare

with some new converters, xgboost, libsvm, and pyspark.
refactor onnxmltools structure by splitting keras and sklearn converters out.

The final release for onnxmltools 1.3

13 Dec 22:50
c40305a
Compare
Choose a tag to compare
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

29 Nov 01:11
93b1789
Compare
Choose a tag to compare
1.3.0-rc1 Pre-release
Pre-release
  1. Multiple opset support: Enables user to generate model based on a specified ONNX opset
  2. ONNX opset 8: Adds support for ONNX opset 8 in all converters
  3. ONNX model optimization: Reduces redundant operators like transpose and identity in the converted model
  4. 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
  5. 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
  6. Separate LightGBM from scikit-learn converter: Improves code organization

1.2.2

25 Aug 00:32
0cd78a7
Compare
Choose a tag to compare
v1.2.2

upgrade the version for the final 1.2.2 release. (#132)

1.2.0-rc1

25 Jul 18:45
63e4d33
Compare
Choose a tag to compare
1.2.0-rc1 Pre-release
Pre-release
Support the offset member in Core ML crop layer parameter. (#119)

* Support the offset member in Core ML crop layer parameter.

* fix the order.

* correct the border value.

* add a docs string.