We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a6f18c commit 7d6ee4eCopy full SHA for 7d6ee4e
tf2onnx/onnx_opset/tensor.py
@@ -59,13 +59,24 @@ def _wrap_concat_with_cast(ctx, node):
59
ctx.copy_shape(output_name, output_cast.output[0])
60
61
62
-@tf_op(["Size", "Flatten", "Dropout"])
+@tf_op(["Size", "Flatten"])
63
class DirectOp:
64
@classmethod
65
def version_4(cls, ctx, node, **kwargs):
66
pass
67
68
69
+@tf_op("Dropout")
70
+class Dropout:
71
+ @classmethod
72
+ def version_4(cls, ctx, node, **kwargs):
73
+ pass
74
+
75
76
+ def version_10(cls, ctx, node, **kwargs):
77
78
79
80
@tf_op("Identity")
81
class Identity:
82
0 commit comments