diff --git a/examples/cnn/model.json b/examples/cnn/model.json new file mode 100644 index 0000000..caadd8c --- /dev/null +++ b/examples/cnn/model.json @@ -0,0 +1,15 @@ +{ + "file": "conv_2d_inputs.pb", + "inputs": [ + { + "name": "input_0_input", + "shape": [28,28,1] + } + ], + "outputs": [ + { + "name": "Identity" + } + ], + "network_name": "cnn" +} diff --git a/examples/dnn_2_inputs/model.json b/examples/dnn_2_inputs/model.json new file mode 100644 index 0000000..a6a3bee --- /dev/null +++ b/examples/dnn_2_inputs/model.json @@ -0,0 +1,19 @@ +{ + "file": "dnn_2_inputs.pb", + "inputs": [ + { + "name": "input_0", + "shape": [392] + }, + { + "name": "input_1", + "shape": [392] + } + ], + "outputs": [ + { + "name": "Identity" + } + ], + "network_name": "dnn_2_inputs" +} diff --git a/examples/simple_dnn/model.json b/examples/simple_dnn/model.json new file mode 100644 index 0000000..2fa9f8d --- /dev/null +++ b/examples/simple_dnn/model.json @@ -0,0 +1,15 @@ +{ + "file": "simple_dnn.pb", + "inputs": [ + { + "name": "input_0", + "shape": [784] + } + ], + "outputs": [ + { + "name": "Identity" + } + ], + "network_name": "dnn" +}