Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / CircleRecipes / InstanceNorm_000 / test.recipe
1 operand {
2   name: "ifm"
3   type: FLOAT32
4   shape { dim: 1 dim: 8 dim: 6 dim: 12 }
5 }
6 operand {
7   name: "gamma"
8   type: FLOAT32
9   shape { dim: 12 }
10   filler {
11     tag: "gaussian"
12     arg: "0.0"
13     arg: "1.0"
14   }
15 }
16 operand {
17   name: "beta"
18   type: FLOAT32
19   shape { dim: 12 }
20   filler {
21     tag: "gaussian"
22     arg: "0.0"
23     arg: "1.0"
24   }
25 }
26 operand {
27   name: "ofm"
28   type: FLOAT32
29   shape { dim: 1 dim: 8 dim: 6 dim: 12 }
30 }
31 operation {
32   type: "InstanceNorm"
33   input: "ifm"
34   input: "gamma"
35   input: "beta"
36   output: "ofm"
37   instance_norm_options {
38     epsilon: 0.00001
39     activation: NONE
40   }
41 }
42 input: "ifm"
43 output: "ofm"