Imported Upstream version 1.19.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / Part_Tanh_FC_nobias / test.recipe
1 operand {
2   name: "in"
3   type: FLOAT32
4   shape { dim: 2 dim: 4 }
5 }
6 operand {
7   name: "Tanh"
8   type: FLOAT32
9   shape { dim: 2 dim: 4 }
10 }
11 operand {
12   name: "weight"
13   type: FLOAT32
14   shape { dim: 4 dim: 4 }
15   filler {
16     tag: "gaussian"
17     arg: "0.0"
18     arg: "1.0"
19   }
20 }
21 operand {
22   name: "out"
23   type: FLOAT32
24   shape { dim: 2 dim: 4 }
25 }
26 operation {
27   type: "Tanh"
28   input: "in"
29   output: "Tanh"
30 }
31 operation {
32   type: "FullyConnected"
33   fullyconnected_options {
34     activation: NONE
35   }
36   input: "Tanh"
37   input: "weight"
38   input: ""
39   output: "out"
40 }
41 input: "in"
42 output: "out"