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 19dc2e2 commit c2a0766Copy full SHA for c2a0766
tf2onnx/custom_opsets/onnx_ml.py
@@ -1,19 +1,20 @@
1
# Copyright (c) Microsoft Corporation. All rights reserved.
2
# Licensed under the MIT license.
3
""" tf2onnx mapping functions for onnx ml domain. """
4
-import numpy as np
5
-
6
-from onnx import onnx_pb
7
from tf2onnx import constants
8
from tf2onnx.handler import tf_op
9
+
+# pylint: disable=unused-argument,missing-docstring,unnecessary-pass
10
@tf_op("HashTableV2")
11
class HashTable:
12
@classmethod
13
def version_11(cls, ctx, node, **kwargs):
14
""" HashTable will be removed """
15
pass
16
17
18
@tf_op("LookupTableFindV2")
19
class LookupTableFind:
20
0 commit comments