Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / tests / nnapi / specs / V1_1 / mean_axis01_2_nnfw.mod.py
1 model = Model()
2 i1 = Input("input", "TENSOR_FLOAT32", "{1, 4, 3, 2}")
3 axis = Parameter("axis", "TENSOR_INT32", "{4}", [1, 2, -3, -3])
4 keepDims = Int32Scalar("keepDims", 1)
5 output = Output("output", "TENSOR_FLOAT32", "{1, 1, 1, 2}")
6 model = model.Operation("MEAN", i1, axis, keepDims).To(output)
7
8 # Example 1. Input in operand 0,
9 input0 = {i1: # input 0
10           [1.0,  2.0,  3.0,  4.0,  5.0,  6.0,  7.0,  8.0,  9.0,  10.0, 11.0, 12.0,
11            13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0]}
12
13 output0 = {output: # output 0
14           [12.0, 13.0]}
15
16 # Instantiate an example
17 Example((input0, output0))