summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Quant_Mean_001/test.recipe
blob: d383997d3a880bc73c48c18d78ef0c5160a2813d (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
operand {
  name: "ifm"
  type: FLOAT32
  shape { dim: 1 dim: 8 dim: 8 dim: 4 }
}
operand {
  name: "reduction_indices"
  type: INT32
  shape { dim: 1 }
  filler { tag: "explicit" arg: "-1" }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 1 dim: 8 dim: 8 dim: 1 }
}
operation {
  type: "Mean"
  mean_options {
    keep_dims: true
  }
  input: "ifm"
  input: "reduction_indices"
  output: "ofm"
}
input: "ifm"
output: "ofm"