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 dcc6a4f commit 965e988Copy full SHA for 965e988
tests/test_graph.py
@@ -249,8 +249,8 @@ def test_relu6(self):
249
_ = tf.identity(x_, name="output")
250
g = process_tf_graph(sess.graph, opset=self.config.opset)
251
self.assertEqual(
252
- 'digraph { input1 [op_type=Placeholder shape="[2, 3]"] Relu6 [op_type=Relu] Relu6__2 [op_type=Clip] '
253
- 'output [op_type=Identity] input1:0 -> Relu6 Relu6:0 -> Relu6__2 Relu6__2:0 -> output }',
+ 'digraph { input1 [op_type=Placeholder shape="[2, 3]"] Relu6 [op_type=Clip] output [op_type=Identity] '
+ 'input1:0 -> Relu6 Relu6:0 -> output }',
254
onnx_to_graphviz(g))
255
256
def test_conv2d(self):
0 commit comments