4265514852542f0bfbbfb106ec64084f507e2fae
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / Net_TConv_Add_002 / test.recipe
1 operand {
2   name: "filter"
3   type: FLOAT32
4   shape {
5     dim: 1
6     dim: 3
7     dim: 3
8     dim: 2
9   }
10   filler {
11     tag: "gaussian"
12     arg: "0.0"
13     arg: "0.1"
14   }
15 }
16 operand {
17   name: "Addition"
18   type: FLOAT32
19   shape {
20     dim: 1
21     dim: 4
22     dim: 4
23     dim: 1
24   }
25 }
26 operand {
27   name: "Addition_add_param"
28   type: FLOAT32
29   shape {
30     dim: 1
31   }
32   filler {
33     tag: "explicit"
34     arg: "-2.04724"
35   }
36 }
37 operand {
38   name: "Hole"
39   type: FLOAT32
40   shape {
41     dim: 1
42     dim: 2
43     dim: 2
44     dim: 2
45   }
46 }
47 operand {
48   name: "conv2d_transpose"
49   type: FLOAT32
50   shape {
51     dim: 1
52     dim: 4
53     dim: 4
54     dim: 1
55   }
56 }
57 operand {
58   name: "input_size"
59   type: INT32
60   shape {
61     dim: 4
62   }
63   filler {
64     tag: "explicit"
65     arg: "1"
66     arg: "4"
67     arg: "4"
68     arg: "1"
69   }
70 }
71 operation {
72   type: "TransposeConv"
73   input: "input_size"
74   input: "filter"
75   input: "Hole"
76   output: "conv2d_transpose"
77   transpose_conv_options {
78     padding: VALID
79     stride_w: 1
80     stride_h: 1
81   }
82 }
83 operation {
84   type: "Add"
85   input: "Addition_add_param"
86   input: "conv2d_transpose"
87   output: "Addition"
88   add_options {
89     activation: NONE
90   }
91 }
92 input: "Hole"
93 output: "Addition"