Home | History | Annotate | Download | only in V1_0
      1 # model
      2 model = Model()
      3 i1 = Input("op1", "TENSOR_FLOAT32", "{1, 2, 2, 1}")
      4 
      5 i2 = Output("op2", "TENSOR_FLOAT32", "{1, 2, 2, 1}")
      6 model = model.Operation("TANH", i1).To(i2)
      7 
      8 # Example 1. Input in operand 0,
      9 input0 = {i1: # input 0
     10           [-1, 0, 1, 10]}
     11 
     12 output0 = {i2: # output 0
     13            [-.761594156, 0, .761594156, 0.999999996]}
     14 
     15 # Instantiate an example
     16 Example((input0, output0))
     17