From: 박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 Date: Sun, 17 Feb 2019 22:18:10 +0000 (+0900) Subject: [tflchef] Add FullyConnected test recipe for 4D input (#3037) X-Git-Tag: nncc_backup~858 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=881c71a2038efcb494214cd7f2a5f5e68f017f9c;p=platform%2Fcore%2Fml%2Fnnfw.git [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 --- 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"