Imported Upstream version 1.9.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / NonMaxSuppressionV4_001 / test.recipe
1 operand {
2   name: "boxes"
3   type: FLOAT32
4   shape { dim: 10 dim: 4 }
5 }
6 operand {
7   name: "scores"
8   type: FLOAT32
9   shape { dim: 10 }
10 }
11 operand {
12   name: "max_output_size"
13   type: INT32
14   shape { }
15   filler { tag: "explicit" arg: "5" }
16 }
17 operand {
18   name: "iou_threshold"
19   type: FLOAT32
20   shape { }
21 }
22 operand {
23   name: "score_threshold"
24   type: FLOAT32
25   shape { }
26 }
27 operand {
28   name: "selected_indices"
29   type: INT32
30   shape { }
31 }
32 operand {
33   name: "valid_outputs"
34   type: INT32
35   shape { }
36 }
37 operation {
38   type: "NonMaxSuppressionV4"
39   input: "boxes"
40   input: "scores"
41   input: "max_output_size"
42   input: "iou_threshold"
43   input: "score_threshold"
44   output: "selected_indices"
45   output: "valid_outputs"
46 }
47 input: "boxes"
48 input: "scores"
49 input: "iou_threshold"
50 input: "score_threshold"
51 output: "selected_indices"
52 output: "valid_outputs"