From 1bff2c8fd08b6e0ffd32e528839c6a1e35bb8355 Mon Sep 17 00:00:00 2001 From: pinto0309 Date: Tue, 15 Oct 2024 08:54:50 +0900 Subject: [PATCH] Added `Float32` option --- README.md | 8 ++++---- onnx2tf/__init__.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a29f7dda..cae491d4 100644 --- a/README.md +++ b/README.md @@ -299,7 +299,7 @@ Video speed is adjusted approximately 50 times slower than actual speed. docker run --rm -it \ -v `pwd`:/workdir \ -w /workdir \ - ghcr.io/pinto0309/onnx2tf:1.26.0 + ghcr.io/pinto0309/onnx2tf:1.26.1 or @@ -307,7 +307,7 @@ Video speed is adjusted approximately 50 times slower than actual speed. docker run --rm -it \ -v `pwd`:/workdir \ -w /workdir \ - docker.io/pinto0309/onnx2tf:1.26.0 + docker.io/pinto0309/onnx2tf:1.26.1 or @@ -1674,11 +1674,11 @@ optional arguments: -iqd {int8,uint8,float32}, --input_quant_dtype {int8,uint8,float32} Input dtypes when doing Full INT8 Quantization. - "int8"(default) or "uint8" + "int8"(default) or "uint8" or "float32" -oqd {int8,uint8,float32}, --output_quant_dtype {int8,uint8,float32} Output dtypes when doing Full INT8 Quantization. - "int8"(default) or "uint8" + "int8"(default) or "uint8" or "float32" -nuo, --not_use_onnxsim No optimization by onnx-simplifier is performed. diff --git a/onnx2tf/__init__.py b/onnx2tf/__init__.py index 4a919da6..6fbb5f6a 100644 --- a/onnx2tf/__init__.py +++ b/onnx2tf/__init__.py @@ -1,3 +1,3 @@ from onnx2tf.onnx2tf import convert, main -__version__ = '1.26.0' +__version__ = '1.26.1'