summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/FullyConnected_005/test.recipe
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowLiteRecipes/FullyConnected_005/test.recipe')
-rw-r--r--res/TensorFlowLiteRecipes/FullyConnected_005/test.recipe43
1 files changed, 43 insertions, 0 deletions
diff --git a/res/TensorFlowLiteRecipes/FullyConnected_005/test.recipe b/res/TensorFlowLiteRecipes/FullyConnected_005/test.recipe
new file mode 100644
index 000000000..0aa1dfa77
--- /dev/null
+++ b/res/TensorFlowLiteRecipes/FullyConnected_005/test.recipe
@@ -0,0 +1,43 @@
+operand {
+ name: "in"
+ type: FLOAT32
+ shape { dim: 1 dim: 4 }
+}
+operand {
+ name: "weight"
+ type: FLOAT32
+ shape { dim: 4 dim: 4 }
+ filler {
+ tag: "explicit"
+ arg: "1" arg: "0" arg: "2" arg: "3"
+ arg: "0" arg: "4" arg: "0" arg: "0"
+ arg: "0" arg: "0" arg: "5" arg: "0"
+ arg: "0" arg: "0" arg: "0" arg: "6"
+ }
+}
+operand {
+ name: "bias"
+ type: FLOAT32
+ shape { dim: 4 }
+ filler {
+ tag: "explicit"
+ arg: "1" arg: "-2" arg: "-3" arg: "4"
+ }
+}
+operand {
+ name: "out"
+ type: FLOAT32
+ shape { dim: 1 dim: 4 }
+}
+operation {
+ type: "FullyConnected"
+ fullyconnected_options {
+ activation: NONE
+ }
+ input: "in"
+ input: "weight"
+ input: "bias"
+ output: "out"
+}
+input: "in"
+output: "out"