onnx2tf 1.27.9__py3-none-any.whl → 1.27.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- onnx2tf/__init__.py +1 -1
- onnx2tf/utils/common_functions.py +2 -2
- {onnx2tf-1.27.9.dist-info → onnx2tf-1.27.10.dist-info}/METADATA +4 -3
- {onnx2tf-1.27.9.dist-info → onnx2tf-1.27.10.dist-info}/RECORD +9 -9
- {onnx2tf-1.27.9.dist-info → onnx2tf-1.27.10.dist-info}/WHEEL +1 -1
- {onnx2tf-1.27.9.dist-info → onnx2tf-1.27.10.dist-info}/entry_points.txt +0 -0
- {onnx2tf-1.27.9.dist-info → onnx2tf-1.27.10.dist-info}/licenses/LICENSE +0 -0
- {onnx2tf-1.27.9.dist-info → onnx2tf-1.27.10.dist-info}/licenses/LICENSE_onnx-tensorflow +0 -0
- {onnx2tf-1.27.9.dist-info → onnx2tf-1.27.10.dist-info}/top_level.txt +0 -0
onnx2tf/__init__.py
CHANGED
|
@@ -4306,10 +4306,10 @@ def broadcast_for_gpu_delegate(
|
|
|
4306
4306
|
if not optimization_for_gpu_delegate:
|
|
4307
4307
|
return input_tensor_1, input_tensor_2
|
|
4308
4308
|
xshapes = input_tensor_1.shape
|
|
4309
|
-
xshape_list = [int(dim) for dim in input_tensor_1.shape]
|
|
4309
|
+
xshape_list = [int(dim) if dim is not None else -1 for dim in input_tensor_1.shape]
|
|
4310
4310
|
xshapes_rank = len(xshapes)
|
|
4311
4311
|
yshapes = input_tensor_2.shape
|
|
4312
|
-
yshape_list = [int(dim) for dim in input_tensor_2.shape]
|
|
4312
|
+
yshape_list = [int(dim) if dim is not None else -1 for dim in input_tensor_2.shape]
|
|
4313
4313
|
yshapes_rank = len(yshape_list)
|
|
4314
4314
|
|
|
4315
4315
|
try:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: onnx2tf
|
|
3
|
-
Version: 1.27.
|
|
3
|
+
Version: 1.27.10
|
|
4
4
|
Summary: Self-Created Tools to convert ONNX files (NCHW) to TensorFlow/TFLite/Keras format (NHWC). The purpose of this tool is to solve the massive Transpose extrapolation problem in onnx-tensorflow (onnx-tf).
|
|
5
5
|
Home-page: https://github.com/PINTO0309/onnx2tf
|
|
6
6
|
Author: Katsuya Hyodo
|
|
@@ -334,7 +334,7 @@ Video speed is adjusted approximately 50 times slower than actual speed.
|
|
|
334
334
|
docker run --rm -it \
|
|
335
335
|
-v `pwd`:/workdir \
|
|
336
336
|
-w /workdir \
|
|
337
|
-
ghcr.io/pinto0309/onnx2tf:1.27.
|
|
337
|
+
ghcr.io/pinto0309/onnx2tf:1.27.10
|
|
338
338
|
|
|
339
339
|
or
|
|
340
340
|
|
|
@@ -342,7 +342,7 @@ Video speed is adjusted approximately 50 times slower than actual speed.
|
|
|
342
342
|
docker run --rm -it \
|
|
343
343
|
-v `pwd`:/workdir \
|
|
344
344
|
-w /workdir \
|
|
345
|
-
docker.io/pinto0309/onnx2tf:1.27.
|
|
345
|
+
docker.io/pinto0309/onnx2tf:1.27.10
|
|
346
346
|
|
|
347
347
|
or
|
|
348
348
|
|
|
@@ -1561,6 +1561,7 @@ usage: onnx2tf
|
|
|
1561
1561
|
[-nuonag]
|
|
1562
1562
|
[-b BATCH_SIZE]
|
|
1563
1563
|
[-ois OVERWRITE_INPUT_SHAPE [OVERWRITE_INPUT_SHAPE ...]]
|
|
1564
|
+
[-sh SHAPE_HINTS [SHAPE_HINTS ...]]
|
|
1564
1565
|
[-nlt]
|
|
1565
1566
|
[-onwdt]
|
|
1566
1567
|
[-snms {v4,v5}]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
onnx2tf/__init__.py,sha256=
|
|
1
|
+
onnx2tf/__init__.py,sha256=XUWhuuMFDDXP_g52JLtZhc-ADNltAchMMkJMSLVGSTk,67
|
|
2
2
|
onnx2tf/__main__.py,sha256=2RSCQ7d4lc6CwD-rlGn9UicPFg-P5du7ZD_yh-kuBEU,57
|
|
3
3
|
onnx2tf/onnx2tf.py,sha256=_PB395J0GPgruBNqFzf_45-LR5boe3avZzoQIdnoSOY,126240
|
|
4
4
|
onnx2tf/ops/Abs.py,sha256=V7btmCG_ZvK_qJovUsguq0ZMJ349mhNQ4FHSgzP_Yuo,4029
|
|
@@ -185,13 +185,13 @@ onnx2tf/ops/_Loop.py,sha256=eo5sNfrfOnKV6_I737AWsM5LJTY9DVOxQEvhanxtP4g,11322
|
|
|
185
185
|
onnx2tf/ops/__Loop.py,sha256=ClwMcbNS4hqUtW_pzwjMa9Cqg7ONvz9aplke55A0uJ0,19704
|
|
186
186
|
onnx2tf/ops/__init__.py,sha256=jnmUWWa-3dHzBZV9bmPzXu6eoz2dumJTzO7i8JdcgSM,25
|
|
187
187
|
onnx2tf/utils/__init__.py,sha256=E9FM9He68VIASDnYp-OrxvHFVn55GzWqw2OEkCqn1zg,27
|
|
188
|
-
onnx2tf/utils/common_functions.py,sha256=
|
|
188
|
+
onnx2tf/utils/common_functions.py,sha256=cvczLScMTAuyhLi1ljUeI2SRhACT0-OGBQLibg4yYdE,245521
|
|
189
189
|
onnx2tf/utils/enums.py,sha256=7c5TqetqB07VjyHoxJHfLgtqBqk9ZRyUF33fPOJR1IM,1649
|
|
190
190
|
onnx2tf/utils/logging.py,sha256=yUCmPuJ_XiUItM3sZMcaMO24JErkQy7zZwVTYWAuiKg,1982
|
|
191
|
-
onnx2tf-1.27.
|
|
192
|
-
onnx2tf-1.27.
|
|
193
|
-
onnx2tf-1.27.
|
|
194
|
-
onnx2tf-1.27.
|
|
195
|
-
onnx2tf-1.27.
|
|
196
|
-
onnx2tf-1.27.
|
|
197
|
-
onnx2tf-1.27.
|
|
191
|
+
onnx2tf-1.27.10.dist-info/licenses/LICENSE,sha256=5v_Kxihy8i6mzHVl349ikSREaIdsl9YeUnX1KBDLD2w,1070
|
|
192
|
+
onnx2tf-1.27.10.dist-info/licenses/LICENSE_onnx-tensorflow,sha256=gK4GtS9S5YcyINu6uuNNWdo-kBClyEM4MFLFGiNTeRM,11231
|
|
193
|
+
onnx2tf-1.27.10.dist-info/METADATA,sha256=D-vbk2OeCeu06NZYvAQNJaoFexmJDBnEAwrg8D52WLY,149173
|
|
194
|
+
onnx2tf-1.27.10.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
|
195
|
+
onnx2tf-1.27.10.dist-info/entry_points.txt,sha256=gDPK8ToCFPKMvm8jr9xrGOkXtORJJVh4736fBEKO5k0,41
|
|
196
|
+
onnx2tf-1.27.10.dist-info/top_level.txt,sha256=WgfPiEy3f6vZ_FOpAIEA2CF3TCx1eYrhGw93Ih6b9Fw,8
|
|
197
|
+
onnx2tf-1.27.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|