From efc2b673930a01dc1120c908327a9aa84a8c271a Mon Sep 17 00:00:00 2001 From: xiaowuhu Date: Mon, 13 May 2024 17:14:38 +0800 Subject: [PATCH] Fix fp16 converter bug (#288) * update the change * Update __init__.py --- README.md | 4 ++++ onnxconverter_common/__init__.py | 2 +- requirements.txt | 4 +--- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 14dc1325..6b463d0c 100644 --- a/README.md +++ b/README.md @@ -21,3 +21,7 @@ provided by the bot. You will only need to do this once across all repos using o This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. + +# Document + +Please reference the simple [document](https://onnxruntime.ai/docs/performance/model-optimizations/float16.html) here. diff --git a/onnxconverter_common/__init__.py b/onnxconverter_common/__init__.py index 146bf5d6..b4de8b17 100644 --- a/onnxconverter_common/__init__.py +++ b/onnxconverter_common/__init__.py @@ -8,7 +8,7 @@ This framework performs optimization for ONNX models and includes common utilities for ONNX converters. """ -__version__ = "1.14.0" +__version__ = "1.16.0" __author__ = "Microsoft" __producer__ = "OnnxMLTools" __producer_version__ = __version__ diff --git a/requirements.txt b/requirements.txt index 4e273266..3d3395bf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,2 @@ -numpy -onnx +onnx>=1.16 packaging -protobuf>=3.20.2