1model = Model()
2i1 = Input("input", "TENSOR_QUANT8_ASYMM", "{1, 2, 2, 4}, 0.5f, 0")
3block = Int32Scalar("radius", 2)
4output = Output("output", "TENSOR_QUANT8_ASYMM", "{1, 4, 4, 1}, 0.5f, 0")
5
6model = model.Operation("DEPTH_TO_SPACE", i1, block).To(output)
7
8# Example 1. Input in operand 0,
9input0 = {i1: # input 0
10          [0, 1, 4, 5, 2, 3, 6, 7, 248, 249, 252, 253, 250, 251, 254, 255]}
11
12output0 = {output: # output 0
13           [0, 1, 2, 3, 4, 5, 6, 7, 248, 249, 250, 251, 252, 253, 254, 255]}
14
15# Instantiate an example
16Example((input0, output0))
17