You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
when doing ONNX conversion for pytorch models , we need to create a dummy input variable , like (3,224,224) for Resnet50.
if need to do onnx conversion for polarseg, how shall we create this dummy input variable? what is the size of input tensor?
Thanks
The text was updated successfully, but these errors were encountered:
I am not very familiar with ONNX. But we design PolarNet to be able to take a random size of the input point cloud feature (K*N, K is the feature channel number and N is the number of points). So, this might be a problem for the ONNX conversion. If it needs to be a fixed size, you can try to modify our BEV encoder network (pointnet + scatter max pooling) to a similar structure in PointPillar. They first create a fixed-sized tensor by padding the empty space with zero before feed it to the network.
Hi,
when doing ONNX conversion for pytorch models , we need to create a dummy input variable , like (3,224,224) for Resnet50.
if need to do onnx conversion for polarseg, how shall we create this dummy input variable? what is the size of input tensor?
Thanks
The text was updated successfully, but these errors were encountered: