From 881c71a2038efcb494214cd7f2a5f5e68f017f9c Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=84=B8=ED=9D=AC/On-Device=20Lab=28SR=29/Princip?= =?utf8?q?al=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Mon, 18 Feb 2019 07:18:10 +0900 Subject: [PATCH] [tflchef] Add FullyConnected test recipe for 4D input (#3037) * [tflchef] Add FullyConnected test recipe for 4D input This will add another test.recipe for FullyConnected op that has the same shape as inception v3 Signed-off-by: SaeHie Park * reduce size --- contrib/tflchef/tests/fullyconnected2/test.recipe | 34 +++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 contrib/tflchef/tests/fullyconnected2/test.recipe diff --git a/contrib/tflchef/tests/fullyconnected2/test.recipe b/contrib/tflchef/tests/fullyconnected2/test.recipe new file mode 100644 index 0000000..e404f75 --- /dev/null +++ b/contrib/tflchef/tests/fullyconnected2/test.recipe @@ -0,0 +1,34 @@ +operand { + name: "in" + type: FLOAT32 + shape { dim: 1 dim: 1 dim: 1 dim: 4 } +} +operand { + name: "weight" + type: FLOAT32 + shape { dim: 2 dim: 4 } +} +operand { + name: "bias" + type: FLOAT32 + shape { dim: 2 } +} +operand { + name: "out" + type: FLOAT32 + shape { dim: 1 dim: 2 } +} +operation { + type: "FullyConnected" + fullyconnected_options { + activation: NONE + } + input: "in" + input: "weight" + input: "bias" + output: "out" +} +input: "in" +input: "weight" +input: "bias" +output: "out" -- 2.7.4