summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/integration/onnx-model/files/create_dynamic_model.py
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/test/integration/onnx-model/files/create_dynamic_model.py')
-rwxr-xr-xconfig-model/src/test/integration/onnx-model/files/create_dynamic_model.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/config-model/src/test/integration/onnx-model/files/create_dynamic_model.py b/config-model/src/test/integration/onnx-model/files/create_dynamic_model.py
deleted file mode 100755
index 55df3a557e9..00000000000
--- a/config-model/src/test/integration/onnx-model/files/create_dynamic_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, ["batch", "sequence"])
-OUTPUT = helper.make_tensor_value_info('output', TensorProto.FLOAT, ["batch", "sequence"])
-
-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_dynamic_model.py')
-onnx.save(model_def, 'dynamic_model.onnx')