Imported Upstream version 1.12.0
[platform/core/ml/nnfw.git] / res / CircleRecipes / InstanceNorm_001 / test.recipe
1 operand {
2   name: "ifm"
3   type: FLOAT32
4   shape { dim: 1 dim: 3 dim: 3 dim: 4 }
5 }
6 operand {
7   name: "gamma"
8   type: FLOAT32
9   shape { dim: 4 }
10   filler {
11     tag: "explicit"
12     arg: "0.0123"
13     arg: "-0.3324"
14     arg: "0.2324"
15     arg: "-3.3360"
16   }
17 }
18 operand {
19   name: "beta"
20   type: FLOAT32
21   shape { dim: 4 }
22   filler {
23     tag: "explicit"
24     arg: "0.7023"
25     arg: "-0.3092"
26     arg: "0.7552"
27     arg: "0.2729"
28   }
29 }
30 operand {
31   name: "ofm"
32   type: FLOAT32
33   shape { dim: 1 dim: 3 dim: 3 dim: 4 }
34 }
35 operation {
36   type: "InstanceNorm"
37   input: "ifm"
38   input: "gamma"
39   input: "beta"
40   output: "ofm"
41   instance_norm_options {
42     epsilon: 0.001
43     activation: NONE
44   }
45 }
46 input: "ifm"
47 output: "ofm"