blob: 9e99084a588f468f639a7e555ed7dcb8b9827761 [file] [log] [blame]
model = Model()
i1 = Input("input", "TENSOR_QUANT8_ASYMM", "{2, 3}, 1.0, 0")
begins = Parameter("begins", "TENSOR_INT32", "{2}", [1, 0])
ends = Parameter("ends", "TENSOR_INT32", "{2}", [2, 2])
strides = Parameter("strides", "TENSOR_INT32", "{2}", [1, 1])
beginMask = Int32Scalar("beginMask", 0)
endMask = Int32Scalar("endMask", 2)
output = Output("output", "TENSOR_QUANT8_ASYMM", "{1, 3}, 1.0, 0")
model = model.Operation("STRIDED_SLICE", i1, begins, ends, strides, beginMask, endMask).To(output)
# Example 1. Input in operand 0,
input0 = {i1: # input 0
[1, 2, 3, 4, 5, 6]}
output0 = {output: # output 0
[4, 5, 6]}
# Instantiate an example
Example((input0, output0))