summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Conv2D_U8_000/test.recipe
blob: 9a8e47853eac9262e144ea20d3fd5dabb7d16636 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
operand {
  name: "ifm"
  type: UINT8
  shape { dim: 1 dim: 3 dim: 3 dim: 2 }
  quant { min: 0 max: 1 scale: 0.004 zero_point: 0 }
}
operand {
  name: "ker"
  type: UINT8
  shape { dim: 1 dim: 1 dim: 1 dim: 2 }
  filler {
    tag: "gaussian"
    arg: "102"
    arg: "32"
  }
  quant { min: -4 max: 6 scale: 0.039215686 zero_point: 102 }
}
operand {
  name: "bias"
  type: INT32
  shape { dim: 1 }
  filler {
    tag: "gaussian"
    arg: "0"
    arg: "1024"
  }
  quant { scale: 0.00015686276310589164 zero_point: 0 }
}
operand {
  name: "ofm"
  type: UINT8
  shape { dim: 1 dim: 3 dim: 3 dim: 1 }
  quant { min: -4 max: 6 scale: 0.039215686 zero_point: 102 }
}
operation {
  type: "Conv2D"
  conv2d_options {
    padding: VALID
    stride_w: 1
    stride_h: 1
  }
  input: "ifm"
  input: "ker"
  input: "bias"
  output: "ofm"
}
input: "ifm"
output: "ofm"