Skip to content

Commit

Permalink
Merge pull request #712 from PINTO0309/fix_readme_io
Browse files Browse the repository at this point in the history
Added `Float32` option
  • Loading branch information
PINTO0309 authored Oct 14, 2024
2 parents 93061bc + 1bff2c8 commit 9a4c2e9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -299,15 +299,15 @@ 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

# Authentication is not required for pulls from Docker Hub.
docker run --rm -it \
-v `pwd`:/workdir \
-w /workdir \
docker.io/pinto0309/onnx2tf:1.26.0
docker.io/pinto0309/onnx2tf:1.26.1

or

Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion onnx2tf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from onnx2tf.onnx2tf import convert, main

__version__ = '1.26.0'
__version__ = '1.26.1'

0 comments on commit 9a4c2e9

Please sign in to comment.