ViTPose
ViTPose copied to clipboard
vitpose+_small.pth onnx convertion error
Hi, I try to export Pytorch model to ONNX using the tools/pytorch2onnx.py
config file : https://github.com/ViTAE-Transformer/ViTPose/blob/74253ac4d468ae8110cbed860ca059e0cc334e52/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vitPose%2B_small_coco%2Baic%2Bmpii%2Bap10k%2Bapt36k%2Bwholebody_256x192_udp.py
model : vitpose+_small.pth
error :
The model and loaded state dict do not match exactly
size mismatch for backbone.blocks.0.mlp.fc2.weight: copying a param with shape torch.Size([288, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.0.mlp.fc2.bias: copying a param with shape torch.Size([288]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.0.mlp.experts.0.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.0.mlp.experts.0.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.0.mlp.experts.1.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.0.mlp.experts.1.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.0.mlp.experts.2.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.0.mlp.experts.2.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.0.mlp.experts.3.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.0.mlp.experts.3.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.0.mlp.experts.4.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.0.mlp.experts.4.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.0.mlp.experts.5.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.0.mlp.experts.5.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.1.mlp.fc2.weight: copying a param with shape torch.Size([288, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.1.mlp.fc2.bias: copying a param with shape torch.Size([288]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.1.mlp.experts.0.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.1.mlp.experts.0.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.1.mlp.experts.1.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.1.mlp.experts.1.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.1.mlp.experts.2.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.1.mlp.experts.2.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.1.mlp.experts.3.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.1.mlp.experts.3.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.1.mlp.experts.4.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.1.mlp.experts.4.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.1.mlp.experts.5.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.1.mlp.experts.5.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.2.mlp.fc2.weight: copying a param with shape torch.Size([288, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.2.mlp.fc2.bias: copying a param with shape torch.Size([288]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.2.mlp.experts.0.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.2.mlp.experts.0.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.2.mlp.experts.1.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.2.mlp.experts.1.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.2.mlp.experts.2.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.2.mlp.experts.2.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.2.mlp.experts.3.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.2.mlp.experts.3.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.2.mlp.experts.4.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.2.mlp.experts.4.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.2.mlp.experts.5.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.2.mlp.experts.5.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.3.mlp.fc2.weight: copying a param with shape torch.Size([288, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.3.mlp.fc2.bias: copying a param with shape torch.Size([288]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.3.mlp.experts.0.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.3.mlp.experts.0.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.3.mlp.experts.1.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.3.mlp.experts.1.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.3.mlp.experts.2.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.3.mlp.experts.2.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.3.mlp.experts.3.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.3.mlp.experts.3.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.3.mlp.experts.4.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.3.mlp.experts.4.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.3.mlp.experts.5.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.3.mlp.experts.5.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.4.mlp.fc2.weight: copying a param with shape torch.Size([288, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.4.mlp.fc2.bias: copying a param with shape torch.Size([288]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.4.mlp.experts.0.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.4.mlp.experts.0.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.4.mlp.experts.1.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.4.mlp.experts.1.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.4.mlp.experts.2.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.4.mlp.experts.2.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.4.mlp.experts.3.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.4.mlp.experts.3.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.4.mlp.experts.4.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.4.mlp.experts.4.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.4.mlp.experts.5.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.4.mlp.experts.5.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.5.mlp.fc2.weight: copying a param with shape torch.Size([288, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.5.mlp.fc2.bias: copying a param with shape torch.Size([288]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.5.mlp.experts.0.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.5.mlp.experts.0.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.5.mlp.experts.1.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.5.mlp.experts.1.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.5.mlp.experts.2.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.5.mlp.experts.2.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.5.mlp.experts.3.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.5.mlp.experts.3.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.5.mlp.experts.4.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.5.mlp.experts.4.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.5.mlp.experts.5.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.5.mlp.experts.5.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.6.mlp.fc2.weight: copying a param with shape torch.Size([288, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.6.mlp.fc2.bias: copying a param with shape torch.Size([288]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.6.mlp.experts.0.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.6.mlp.experts.0.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.6.mlp.experts.1.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.6.mlp.experts.1.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.6.mlp.experts.2.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.6.mlp.experts.2.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.6.mlp.experts.3.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.6.mlp.experts.3.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.6.mlp.experts.4.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.6.mlp.experts.4.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.6.mlp.experts.5.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.6.mlp.experts.5.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.7.mlp.fc2.weight: copying a param with shape torch.Size([288, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.7.mlp.fc2.bias: copying a param with shape torch.Size([288]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.7.mlp.experts.0.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.7.mlp.experts.0.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.7.mlp.experts.1.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.7.mlp.experts.1.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.7.mlp.experts.2.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.7.mlp.experts.2.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.7.mlp.experts.3.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.7.mlp.experts.3.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.7.mlp.experts.4.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.7.mlp.experts.4.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.7.mlp.experts.5.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.7.mlp.experts.5.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.8.mlp.fc2.weight: copying a param with shape torch.Size([288, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.8.mlp.fc2.bias: copying a param with shape torch.Size([288]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.8.mlp.experts.0.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.8.mlp.experts.0.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.8.mlp.experts.1.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.8.mlp.experts.1.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.8.mlp.experts.2.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.8.mlp.experts.2.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.8.mlp.experts.3.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.8.mlp.experts.3.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.8.mlp.experts.4.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.8.mlp.experts.4.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.8.mlp.experts.5.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.8.mlp.experts.5.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.9.mlp.fc2.weight: copying a param with shape torch.Size([288, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.9.mlp.fc2.bias: copying a param with shape torch.Size([288]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.9.mlp.experts.0.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.9.mlp.experts.0.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.9.mlp.experts.1.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.9.mlp.experts.1.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.9.mlp.experts.2.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.9.mlp.experts.2.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.9.mlp.experts.3.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.9.mlp.experts.3.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.9.mlp.experts.4.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.9.mlp.experts.4.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.9.mlp.experts.5.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.9.mlp.experts.5.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.10.mlp.fc2.weight: copying a param with shape torch.Size([288, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.10.mlp.fc2.bias: copying a param with shape torch.Size([288]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.10.mlp.experts.0.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.10.mlp.experts.0.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.10.mlp.experts.1.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.10.mlp.experts.1.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.10.mlp.experts.2.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.10.mlp.experts.2.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.10.mlp.experts.3.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.10.mlp.experts.3.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.10.mlp.experts.4.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.10.mlp.experts.4.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.10.mlp.experts.5.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.10.mlp.experts.5.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.11.mlp.fc2.weight: copying a param with shape torch.Size([288, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.11.mlp.fc2.bias: copying a param with shape torch.Size([288]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.11.mlp.experts.0.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.11.mlp.experts.0.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.11.mlp.experts.1.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.11.mlp.experts.1.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.11.mlp.experts.2.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.11.mlp.experts.2.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.11.mlp.experts.3.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.11.mlp.experts.3.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.11.mlp.experts.4.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.11.mlp.experts.4.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
size mismatch for backbone.blocks.11.mlp.experts.5.weight: copying a param with shape torch.Size([96, 1536]) from checkpoint, the shape in current model is torch.Size([192, 1536]).
size mismatch for backbone.blocks.11.mlp.experts.5.bias: copying a param with shape torch.Size([96]) from checkpoint, the shape in current model is torch.Size([192]).
/home/zoomi2023/.local/lib/python3.8/site-packages/mmcv/onnx/symbolic.py:481: UserWarning: DeprecationWarning: This function will be deprecated in future. Welcome to use the unified model deployment toolbox MMDeploy: https://github.com/open-mmlab/mmdeploy
warnings.warn(msg)
Traceback (most recent call last):
File "tools/deployment/pytorch2onnx.py", line 159, in
Ran into the same issue :( Have you found solution?
No, Not yet :(
Have you solved this problem?