|
Hi,
I am trying to run a rknn model in lower version of rknn.
In rknn version 1.3.0, it works perfectly. Output is a array with shape = (1,320,320,3)
In rknn version 1.2.0 or 0.9.9: output shape = (1, 307200).
I tried to reshape the output with shape = (1, 307200) to has same output of rknnv1.3.0. But the result is totally different.- out_boxes = rknn.inference(inputs=[image])
- out_boxes = out_boxes[0].reshape(320, 320, 3)
Please give me advices, how should I reshape my rknn 1.2 outpur? Thanks
|
|