Home | History | Annotate | Download | only in V1_1
      1 model = Model()
      2 i1 = Input("input", "TENSOR_FLOAT32", "{4, 3, 2}")
      3 axis = Parameter("axis", "TENSOR_INT32", "{4}", [1, 0, -3, -3])
      4 keepDims = Int32Scalar("keepDims", 0)
      5 output = Output("output", "TENSOR_FLOAT32", "{2}")
      6 
      7 model = model.Operation("MEAN", i1, axis, keepDims).To(output)
      8 
      9 # Example 1. Input in operand 0,
     10 input0 = {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 
     14 output0 = {output: # output 0
     15           [12.0, 13.0]}
     16 
     17 # Instantiate an example
     18 Example((input0, output0))
     19