aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/integration/onnx-model/files/create_unbound_model.py
diff options
context:
space:
mode:
authorLester Solbakken <lesters@users.noreply.github.com>2020-10-27 15:23:17 +0100
committerGitHub <noreply@github.com>2020-10-27 15:23:17 +0100
commitde5e15528fca545b2a9ccbb1386c5590e11fa383 (patch)
tree7d4670986c2a8a8c097a29b575a4bb8d3bad4f87 /config-model/src/test/integration/onnx-model/files/create_unbound_model.py
parent4d64cbe4e531cb7be1061f1f54809d1d0a1b0061 (diff)
Revert "Lesters/revert revert resolve onnx model types"
Diffstat (limited to 'config-model/src/test/integration/onnx-model/files/create_unbound_model.py')
-rwxr-xr-xconfig-model/src/test/integration/onnx-model/files/create_unbound_model.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/config-model/src/test/integration/onnx-model/files/create_unbound_model.py b/config-model/src/test/integration/onnx-model/files/create_unbound_model.py
deleted file mode 100755
index abf733ea43f..00000000000
--- a/config-model/src/test/integration/onnx-model/files/create_unbound_model.py
+++ /dev/null
@@ -1,12 +0,0 @@
-# Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-
-import onnx
-from onnx import helper, TensorProto
-
-INPUT = helper.make_tensor_value_info('input', TensorProto.FLOAT, [-1, 2])
-OUTPUT = helper.make_tensor_value_info('output', TensorProto.FLOAT, [-1, 2])
-
-nodes = [helper.make_node('Identity', ['input'], ['output'])]
-graph_def = helper.make_graph( nodes, 'simple_scoring', [INPUT], [OUTPUT])
-model_def = helper.make_model(graph_def, producer_name='create_unbound_model.py')
-onnx.save(model_def, 'unbound_model.onnx')