jwyang / faster-rcnn.pytorch

A faster pytorch implementation of faster r-cnn
MIT License
7.7k stars 2.33k forks source link

Missing key(s) in state_dict: "features.0.weight", "... #601

Open York1996OutLook opened 5 years ago

York1996OutLook commented 5 years ago

i use vgg16_caffe.pth and put it in data/pretrained_model. does anyone know what happend??

AlexanderHustinx commented 5 years ago

Could you share your stack trace and full error? That would help shed some more light on the problem.

Initially I would think that you've added a new module/layer to the network for which it is trying to load the weights. But as the module isn't part of the standard VGG16 model, there are no weights to load.

imzhangyd commented 3 years ago

I meet the same problem. Have you solved it? @York1996OutLook