aboutsummaryrefslogtreecommitdiffstats
path: root/model-integration
diff options
context:
space:
mode:
authorLester Solbakken <lesters@oath.com>2020-08-18 11:28:14 +0200
committerLester Solbakken <lesters@oath.com>2020-08-18 11:28:14 +0200
commitd8f514347abb54cc52fc67e5ab27df1660a122d5 (patch)
tree931502d2c4b471855e0bec6cd145286189c4fede /model-integration
parent2489d302d50567e7f145c8aff971bb892c9ce87c (diff)
Correct ONNX operation name for simple model
Diffstat (limited to 'model-integration')
-rw-r--r--model-integration/src/test/models/onnx/simple/simple.onnx6
-rwxr-xr-xmodel-integration/src/test/models/onnx/simple/simple.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/model-integration/src/test/models/onnx/simple/simple.onnx b/model-integration/src/test/models/onnx/simple/simple.onnx
index 41b458451d0..88ed0ef23f0 100644
--- a/model-integration/src/test/models/onnx/simple/simple.onnx
+++ b/model-integration/src/test/models/onnx/simple/simple.onnx
@@ -1,10 +1,10 @@
- simple.py:ã
+ simple.py:ã
0
query_tensor
attribute_tensormatmul"MatMul
"
matmul
- bias_tensoroutput"addsimple_scoringZ
+ bias_tensoroutput"Addsimple_scoringZ
query_tensor


@@ -20,4 +20,4 @@
output


-B \ No newline at end of file
+B \ No newline at end of file
diff --git a/model-integration/src/test/models/onnx/simple/simple.py b/model-integration/src/test/models/onnx/simple/simple.py
index 878cf1c928e..512a2d75125 100755
--- a/model-integration/src/test/models/onnx/simple/simple.py
+++ b/model-integration/src/test/models/onnx/simple/simple.py
@@ -14,7 +14,7 @@ nodes = [
['matmul'],
),
helper.make_node(
- 'add',
+ 'Add',
['matmul', 'bias_tensor'],
['output'],
),