onnx2tf 1.25.11__py3-none-any.whl → 1.25.12__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/Flatten.py +11 -8
- {onnx2tf-1.25.11.dist-info → onnx2tf-1.25.12.dist-info}/METADATA +4 -4
- {onnx2tf-1.25.11.dist-info → onnx2tf-1.25.12.dist-info}/RECORD +9 -9
- {onnx2tf-1.25.11.dist-info → onnx2tf-1.25.12.dist-info}/LICENSE +0 -0
- {onnx2tf-1.25.11.dist-info → onnx2tf-1.25.12.dist-info}/LICENSE_onnx-tensorflow +0 -0
- {onnx2tf-1.25.11.dist-info → onnx2tf-1.25.12.dist-info}/WHEEL +0 -0
- {onnx2tf-1.25.11.dist-info → onnx2tf-1.25.12.dist-info}/entry_points.txt +0 -0
- {onnx2tf-1.25.11.dist-info → onnx2tf-1.25.12.dist-info}/top_level.txt +0 -0
onnx2tf/__init__.py
CHANGED
onnx2tf/ops/Flatten.py
CHANGED
|
@@ -57,14 +57,17 @@ def make_node(
|
|
|
57
57
|
output_shape = graph_node_output.shape
|
|
58
58
|
dtype = graph_node_output.dtype
|
|
59
59
|
|
|
60
|
-
axis = graph_node.attrs.get("axis",
|
|
61
|
-
if
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
axis=
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
60
|
+
axis = graph_node.attrs.get("axis", None)
|
|
61
|
+
if axis is not None:
|
|
62
|
+
if graph_node_input.shape is not None \
|
|
63
|
+
and axis < input_tensor_rank:
|
|
64
|
+
axis = convert_axis(
|
|
65
|
+
axis=axis,
|
|
66
|
+
tensor_rank=len(graph_node_input.shape),
|
|
67
|
+
before_op_output_shape_trans=before_op_output_shape_trans,
|
|
68
|
+
)
|
|
69
|
+
else:
|
|
70
|
+
axis = input_tensor_rank - 1
|
|
68
71
|
|
|
69
72
|
# Preserving Graph Structure (Dict)
|
|
70
73
|
tf_layers_dict[graph_node_output.name] = {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: onnx2tf
|
|
3
|
-
Version: 1.25.
|
|
3
|
+
Version: 1.25.12
|
|
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
|
|
@@ -314,7 +314,7 @@ Video speed is adjusted approximately 50 times slower than actual speed.
|
|
|
314
314
|
docker run --rm -it \
|
|
315
315
|
-v `pwd`:/workdir \
|
|
316
316
|
-w /workdir \
|
|
317
|
-
ghcr.io/pinto0309/onnx2tf:1.25.
|
|
317
|
+
ghcr.io/pinto0309/onnx2tf:1.25.12
|
|
318
318
|
|
|
319
319
|
or
|
|
320
320
|
|
|
@@ -322,7 +322,7 @@ Video speed is adjusted approximately 50 times slower than actual speed.
|
|
|
322
322
|
docker run --rm -it \
|
|
323
323
|
-v `pwd`:/workdir \
|
|
324
324
|
-w /workdir \
|
|
325
|
-
docker.io/pinto0309/onnx2tf:1.25.
|
|
325
|
+
docker.io/pinto0309/onnx2tf:1.25.12
|
|
326
326
|
|
|
327
327
|
or
|
|
328
328
|
|
|
@@ -419,7 +419,7 @@ The given SavedModel SignatureDef contains the following input(s):
|
|
|
419
419
|
The given SavedModel SignatureDef contains the following output(s):
|
|
420
420
|
outputs['output_0'] tensor_info:
|
|
421
421
|
dtype: DT_FLOAT
|
|
422
|
-
shape: (1, 1000)
|
|
422
|
+
shape: (-1, 1000)
|
|
423
423
|
name: PartitionedCall:0
|
|
424
424
|
Method name is: tensorflow/serving/predict
|
|
425
425
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
onnx2tf/__init__.py,sha256=
|
|
1
|
+
onnx2tf/__init__.py,sha256=627_ZeFqdp2iujcX3skUp2qZkqtcJ-iZUtUzhaWBmUU,67
|
|
2
2
|
onnx2tf/__main__.py,sha256=2RSCQ7d4lc6CwD-rlGn9UicPFg-P5du7ZD_yh-kuBEU,57
|
|
3
3
|
onnx2tf/onnx2tf.py,sha256=v7juKPrl_0h9SQyck-Ol4B59QXWSSePVC3AUu3fmvII,122750
|
|
4
4
|
onnx2tf/ops/Abs.py,sha256=V7btmCG_ZvK_qJovUsguq0ZMJ349mhNQ4FHSgzP_Yuo,4029
|
|
@@ -45,7 +45,7 @@ onnx2tf/ops/Erf.py,sha256=ayvSp8Pr9h-VYuIiMorwOC0r9aQ4i4S1Uvaho9R6PYo,4962
|
|
|
45
45
|
onnx2tf/ops/Exp.py,sha256=MM_Osse7UbJgld2u0fGMcjniJCs40uDztuOodVUqWMU,3583
|
|
46
46
|
onnx2tf/ops/Expand.py,sha256=MGsby7IhTqKv1K-1INQPHcI5l3Wx-jjJ1FnulpCZsag,14761
|
|
47
47
|
onnx2tf/ops/EyeLike.py,sha256=VHRlr_WpIGVpZSqfjN7zWQF6XT2KjNVJnjVccxB4P6U,5877
|
|
48
|
-
onnx2tf/ops/Flatten.py,sha256=
|
|
48
|
+
onnx2tf/ops/Flatten.py,sha256=vXRd295Ro7V6p6TwL1xzE1IxI7PSA3iLvugYQJ8UYTA,6251
|
|
49
49
|
onnx2tf/ops/Floor.py,sha256=8izJrNmw8wNmjF_YabIpLs4jm82J-gKcyAQbwV7Yqpc,3589
|
|
50
50
|
onnx2tf/ops/FusedConv.py,sha256=gslI50V3yvt4l0mmodnyHFAu0cORx1J_ZL5cE0rZ8qs,4523
|
|
51
51
|
onnx2tf/ops/GRU.py,sha256=kBHiZlhlPIV2DQCoFYFHxCTwOATeguJy1MSfj2kxqDM,30732
|
|
@@ -188,10 +188,10 @@ onnx2tf/utils/__init__.py,sha256=E9FM9He68VIASDnYp-OrxvHFVn55GzWqw2OEkCqn1zg,27
|
|
|
188
188
|
onnx2tf/utils/common_functions.py,sha256=gCpAe11EcX-gYOMu68saIpIj20pDmLld-6jybnc_0aY,240691
|
|
189
189
|
onnx2tf/utils/enums.py,sha256=7c5TqetqB07VjyHoxJHfLgtqBqk9ZRyUF33fPOJR1IM,1649
|
|
190
190
|
onnx2tf/utils/logging.py,sha256=yUCmPuJ_XiUItM3sZMcaMO24JErkQy7zZwVTYWAuiKg,1982
|
|
191
|
-
onnx2tf-1.25.
|
|
192
|
-
onnx2tf-1.25.
|
|
193
|
-
onnx2tf-1.25.
|
|
194
|
-
onnx2tf-1.25.
|
|
195
|
-
onnx2tf-1.25.
|
|
196
|
-
onnx2tf-1.25.
|
|
197
|
-
onnx2tf-1.25.
|
|
191
|
+
onnx2tf-1.25.12.dist-info/LICENSE,sha256=5v_Kxihy8i6mzHVl349ikSREaIdsl9YeUnX1KBDLD2w,1070
|
|
192
|
+
onnx2tf-1.25.12.dist-info/LICENSE_onnx-tensorflow,sha256=gK4GtS9S5YcyINu6uuNNWdo-kBClyEM4MFLFGiNTeRM,11231
|
|
193
|
+
onnx2tf-1.25.12.dist-info/METADATA,sha256=rnNHfLpnT2aW8Zbbdc2rGwQj7-t6Z5rXP2uu7YkNLnY,146147
|
|
194
|
+
onnx2tf-1.25.12.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
195
|
+
onnx2tf-1.25.12.dist-info/entry_points.txt,sha256=gDPK8ToCFPKMvm8jr9xrGOkXtORJJVh4736fBEKO5k0,41
|
|
196
|
+
onnx2tf-1.25.12.dist-info/top_level.txt,sha256=WgfPiEy3f6vZ_FOpAIEA2CF3TCx1eYrhGw93Ih6b9Fw,8
|
|
197
|
+
onnx2tf-1.25.12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|