summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Quant_Softmax_000/test.recipe
blob: ce9abf55589d10f6ee6957c1672c06ceba311625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
operand {
  name: "ifm"
  type: FLOAT32
  shape { dim: 1 dim: 3 dim: 3 dim: 2 }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 1 dim: 3 dim: 3 dim: 2 }
}
operation {
  type: "Softmax"
  softmax_options {
    beta: 0.0
  }
  input: "ifm"
  output: "ofm"
}
input: "ifm"
output: "ofm"