Skip to content

Commit 32e9bd3

Browse files
committed
Merge branch 'master' into gs/fix-random-uniform
2 parents 967e685 + d03e469 commit 32e9bd3

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

tf2onnx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
__all__ = ["utils", "graph_matcher", "graph", "loader", "tfonnx", "shape_inference", "schemas"]
1010

1111
from .version import version as __version__
12-
from . import logging
12+
from . import verbose_logging as logging
1313
from tf2onnx import tfonnx, utils, graph, graph_matcher, shape_inference, schemas # pylint: disable=wrong-import-order

tf2onnx/convert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from tf2onnx.graph import GraphUtil
1616
from tf2onnx.tfonnx import process_tf_graph, tf_optimize
17-
from . import constants, loader, logging, utils
17+
from tf2onnx import constants, loader, logging, utils
1818

1919

2020
# pylint: disable=unused-argument

tf2onnx/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,8 @@ def get_tf_tensor_data(tensor):
165165
is_raw = True
166166
elif tensor.float_val:
167167
data = tensor.float_val
168+
elif tensor.half_val:
169+
data = tensor.half_val
168170
elif tensor.dcomplex_val:
169171
data = tensor.dcomplex_val
170172
elif tensor.int_val:
File renamed without changes.

0 commit comments

Comments
 (0)