onnx2tf 1.28.6__py3-none-any.whl → 1.28.7__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/ops/Conv.py +1 -1
- {onnx2tf-1.28.6.dist-info → onnx2tf-1.28.7.dist-info}/METADATA +3 -3
- {onnx2tf-1.28.6.dist-info → onnx2tf-1.28.7.dist-info}/RECORD +9 -9
- {onnx2tf-1.28.6.dist-info → onnx2tf-1.28.7.dist-info}/WHEEL +0 -0
- {onnx2tf-1.28.6.dist-info → onnx2tf-1.28.7.dist-info}/entry_points.txt +0 -0
- {onnx2tf-1.28.6.dist-info → onnx2tf-1.28.7.dist-info}/licenses/LICENSE +0 -0
- {onnx2tf-1.28.6.dist-info → onnx2tf-1.28.7.dist-info}/licenses/LICENSE_onnx-tensorflow +0 -0
- {onnx2tf-1.28.6.dist-info → onnx2tf-1.28.7.dist-info}/top_level.txt +0 -0
onnx2tf/__init__.py
CHANGED
onnx2tf/ops/Conv.py
CHANGED
|
@@ -62,7 +62,7 @@ def make_node(
|
|
|
62
62
|
before_op_output_shape_trans,
|
|
63
63
|
)
|
|
64
64
|
kernel_shape = graph_node.attrs.get('kernel_shape', [])
|
|
65
|
-
kernel_size = len(kernel_shape)
|
|
65
|
+
kernel_size = len(kernel_shape) if kernel_shape != [] else len(graph_node.inputs[1].shape) - 2
|
|
66
66
|
try:
|
|
67
67
|
input_weights = get_weights_constant_or_variable(
|
|
68
68
|
const_or_var=graph_node.inputs[1] \
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: onnx2tf
|
|
3
|
-
Version: 1.28.
|
|
3
|
+
Version: 1.28.7
|
|
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.28.
|
|
337
|
+
ghcr.io/pinto0309/onnx2tf:1.28.7
|
|
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.28.
|
|
345
|
+
docker.io/pinto0309/onnx2tf:1.28.7
|
|
346
346
|
|
|
347
347
|
or
|
|
348
348
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
onnx2tf/__init__.py,sha256=
|
|
1
|
+
onnx2tf/__init__.py,sha256=A8WjpXyCp-z5LE7ay1tL-CV8Xjh1Xu01oFLi0sqb1bw,66
|
|
2
2
|
onnx2tf/__main__.py,sha256=2RSCQ7d4lc6CwD-rlGn9UicPFg-P5du7ZD_yh-kuBEU,57
|
|
3
3
|
onnx2tf/onnx2tf.py,sha256=iQwYuLj1f7gHWU9r_4L1pyRnMsJgHkqEPeavxejtY4Y,146964
|
|
4
4
|
onnx2tf/ops/Abs.py,sha256=V7btmCG_ZvK_qJovUsguq0ZMJ349mhNQ4FHSgzP_Yuo,4029
|
|
@@ -26,7 +26,7 @@ onnx2tf/ops/Concat.py,sha256=CKfJbiAwP7h9sFFVyueHJCbwMkUo3NXqkTuRc8v7Tw8,31215
|
|
|
26
26
|
onnx2tf/ops/ConcatFromSequence.py,sha256=z8pNmGQRGq9cxWORW330NZS_0zsmhFudLswMyPn8AXU,3086
|
|
27
27
|
onnx2tf/ops/Constant.py,sha256=BNZLzNI4rK9kXgVWwD-2RFsDsH7mMy7AY2JSgTNXIWk,10696
|
|
28
28
|
onnx2tf/ops/ConstantOfShape.py,sha256=6eYm-niow-6fHVEyNyi81BdrVe3IbcdazCp2nySWExA,2331
|
|
29
|
-
onnx2tf/ops/Conv.py,sha256=
|
|
29
|
+
onnx2tf/ops/Conv.py,sha256=MX4bDOZUnGpLGQkqVRunc_iw7TU-Rb4pgX1rE64bR1k,37944
|
|
30
30
|
onnx2tf/ops/ConvInteger.py,sha256=UVHy1de6uCLM7IXP4vpzPz2pN2ej278lGBiqTPNdXFA,26664
|
|
31
31
|
onnx2tf/ops/ConvTranspose.py,sha256=C7CR6m3kz0MtUBdtWrrKWZbZL7tJpGXl7Nkn3DRiEaA,15410
|
|
32
32
|
onnx2tf/ops/Cos.py,sha256=0v5ZJZRzrswVEObyxf4f0RvnWMWZA4uCEdoeq_VE31s,3608
|
|
@@ -190,10 +190,10 @@ onnx2tf/utils/enums.py,sha256=7c5TqetqB07VjyHoxJHfLgtqBqk9ZRyUF33fPOJR1IM,1649
|
|
|
190
190
|
onnx2tf/utils/iterative_json_optimizer.py,sha256=qqeIxWGxrhcCYk8-ebWnblnOkzDCwi-nseipHzHR_bk,10436
|
|
191
191
|
onnx2tf/utils/json_auto_generator.py,sha256=C-4P8sii7B2_LRwW6AFG13tI3R5DHPhNirgxfmBU1F8,61944
|
|
192
192
|
onnx2tf/utils/logging.py,sha256=yUCmPuJ_XiUItM3sZMcaMO24JErkQy7zZwVTYWAuiKg,1982
|
|
193
|
-
onnx2tf-1.28.
|
|
194
|
-
onnx2tf-1.28.
|
|
195
|
-
onnx2tf-1.28.
|
|
196
|
-
onnx2tf-1.28.
|
|
197
|
-
onnx2tf-1.28.
|
|
198
|
-
onnx2tf-1.28.
|
|
199
|
-
onnx2tf-1.28.
|
|
193
|
+
onnx2tf-1.28.7.dist-info/licenses/LICENSE,sha256=5v_Kxihy8i6mzHVl349ikSREaIdsl9YeUnX1KBDLD2w,1070
|
|
194
|
+
onnx2tf-1.28.7.dist-info/licenses/LICENSE_onnx-tensorflow,sha256=gK4GtS9S5YcyINu6uuNNWdo-kBClyEM4MFLFGiNTeRM,11231
|
|
195
|
+
onnx2tf-1.28.7.dist-info/METADATA,sha256=OcuSCAQ-Taq_SZ120vzXJQTQ5PQzilWq8ojS-Fwjx7Y,151931
|
|
196
|
+
onnx2tf-1.28.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
197
|
+
onnx2tf-1.28.7.dist-info/entry_points.txt,sha256=gDPK8ToCFPKMvm8jr9xrGOkXtORJJVh4736fBEKO5k0,41
|
|
198
|
+
onnx2tf-1.28.7.dist-info/top_level.txt,sha256=WgfPiEy3f6vZ_FOpAIEA2CF3TCx1eYrhGw93Ih6b9Fw,8
|
|
199
|
+
onnx2tf-1.28.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|