Skip to content

Releases: microsoft/onnxconverter-common

v1.5.4

27 Sep 18:22
4c51c4b
Compare
Choose a tag to compare

Major updates:

  1. Update Clip operator
  2. Fix on optimization, unit test added.

v1.5.3

08 Aug 18:01
2deefe5
Compare
Choose a tag to compare

Major update:

  1. Perform topological sorting on node list when we make onnx model.
  2. Several changes on optimizer.

v1.5.0

10 Jun 20:50
2d05cea
Compare
Choose a tag to compare

onnxconverter-common version 1.5.0 is now available! This package was created alongside the onnxmltools package to enable common code to be shared among various ONNX converter offerings.

onnxmltools, sklearn-onnx, and keras-onnx depend on the onnxconverter-common package for shared code and utilities, including:

  1. Converting common ONNX operations (onnx_ops.py)
  2. ONNX graph topology and data types (topology.py, container.py, data_types.py)
  3. Other shared tools, including the float32->float16 converter (float16.py), ONNX graph optimizer (optimizer.py) and common shape calculators (shape_calculator.py)

How do I use the latest onnxconverter-common package?

pip install onnxconverter-common
python -c "import onnxconverter_common"

This package is automatically installed as part of the dependencies for onnxmltools, keras2onnx, and skl2onnx.

Highlights since the last release