SysCV / transfiner

Mask Transfiner for High-Quality Instance Segmentation, CVPR 2022
https://www.vis.xyz/pub/transfiner
Apache License 2.0
534 stars 61 forks source link

got fvcore.common.checkpoint WARNING #24

Closed wmrenr closed 2 years ago

wmrenr commented 2 years ago

Thanks for your great contribution! Except for changing the dataset, everything else is in accordance with the repo guidance,but I get this warning when training with my own coco format dataset:fvcore.common.checkpoint WARNING: Some model parameters or buffers are not found in the checkpoint: backbone.fpn_lateral2.{bias, weight} backbone.fpn_lateral3.{bias, weight} backbone.fpn_lateral4.{bias, weight} backbone.fpn_lateral5.{bias, weight} backbone.fpn_output2.{bias, weight} backbone.fpn_output3.{bias, weight} backbone.fpn_output4.{bias, weight} backbone.fpn_output5.{bias, weight} proposal_generator.rpn_head.anchor_deltas.{bias, weight} proposal_generator.rpn_head.conv.{bias, weight} proposal_generator.rpn_head.objectness_logits.{bias, weight} roi_heads.box_head.fc1.{bias, weight} roi_heads.box_head.fc2.{bias, weight} ...... what caused this?

lkeab commented 2 years ago

The initial backbone weight Resnet 50 or 101 does not have these parameters.

wmrenr commented 2 years ago

Oh,how to avoid this problem?

lkeab commented 2 years ago

It's just a warning. You can ignore it.