summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/ArgMax_000/test.recipe
blob: 2883e18537fbfd12a8a2d03f1a75c0e5fbf9f1cf (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
operand {
  name: "ifm"
  type: FLOAT32
  shape { dim: 4 }
}
operand {
  name: "ofm"
  type: INT64
  shape { }
}
operand {
  name: "argmax/dim"
  type: INT32
  shape { }
  filler {
    tag: "explicit"
    arg: "0"
  }
}
operation {
  type: "ArgMax"
  argmax_options {
    output_type: INT64
  }
  input: "ifm"
  input: "argmax/dim"
  output: "ofm"
}
input: "ifm"
output: "ofm"