Skip to content

Commit

Permalink
Add missing json files.
Browse files Browse the repository at this point in the history
  • Loading branch information
riga committed Jan 9, 2024
1 parent 1b9d225 commit baced1a
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
15 changes: 15 additions & 0 deletions examples/cnn/model.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"file": "conv_2d_inputs.pb",
"inputs": [
{
"name": "input_0_input",
"shape": [28,28,1]
}
],
"outputs": [
{
"name": "Identity"
}
],
"network_name": "cnn"
}
19 changes: 19 additions & 0 deletions examples/dnn_2_inputs/model.json
Original file line number Diff line number Diff line change
@@ -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"
}
15 changes: 15 additions & 0 deletions examples/simple_dnn/model.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"file": "simple_dnn.pb",
"inputs": [
{
"name": "input_0",
"shape": [784]
}
],
"outputs": [
{
"name": "Identity"
}
],
"network_name": "dnn"
}

0 comments on commit baced1a

Please sign in to comment.