Imported Upstream version 1.9.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / NonMaxSuppressionV4_000 / 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 }
16 operand {
17   name: "iou_threshold"
18   type: FLOAT32
19   shape { }
20 }
21 operand {
22   name: "score_threshold"
23   type: FLOAT32
24   shape { }
25 }
26 operand {
27   name: "selected_indices"
28   type: INT32
29   shape { }
30 }
31 operand {
32   name: "valid_outputs"
33   type: INT32
34   shape { }
35 }
36 operation {
37   type: "NonMaxSuppressionV4"
38   input: "boxes"
39   input: "scores"
40   input: "max_output_size"
41   input: "iou_threshold"
42   input: "score_threshold"
43   output: "selected_indices"
44   output: "valid_outputs"
45 }
46 input: "boxes"
47 input: "scores"
48 input: "max_output_size"
49 input: "iou_threshold"
50 input: "score_threshold"
51 output: "selected_indices"
52 output: "valid_outputs"