summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Quant_MaxPool2D_I8_000/test.recipe
blob: 23717132e4e2fe8c768c1d7541617db38d27b25d (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
49
50
51
operand {
  name: "x"
  type: INT8
  shape {
    dim: 1
    dim: 28
    dim: 28
    dim: 128
  }
  quant {
    min: -4.71396
    max: 4.72839499
    scale: 0.0370288454
    zero_point: -1
    quantized_dimension: 0
  }
  is_variable: false
}
operand {
  name: "Identity"
  type: INT8
  shape {
    dim: 1
    dim: 14
    dim: 14
    dim: 128
  }
  quant {
    min: -4.71396
    max: 4.72839499
    scale: 0.0370288454
    zero_point: -1
    quantized_dimension: 0
  }
  is_variable: false
}
operation {
  type: "MaxPool2D"
  input: "x"
  output: "Identity"
  maxpool2d_options {
    padding: VALID
    stride_w: 2
    stride_h: 2
    filter_width: 2
    filter_height: 2
    activation: NONE
  }
}
input: "x"
output: "Identity"