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