pytorch-faster-rcnn
pytorch-faster-rcnn copied to clipboard
-> keep_inds = torch.cat([fg_inds, bg_inds], 0) (Pdb)
-> keep_inds = torch.cat([fg_inds, bg_inds], 0) (Pdb)
Do you want to insert some conv layers?Maybe you forget give weight at net/network.py line478.
how to fix it?
Either voc2007 or my own data has the same question!!
I got this question because I want to insert another convolution layers,so I fix it by giving these layers weights.
But I didn't revise anything_(:з」∠)_
---Original--- From: "ChrisHJC"<[email protected]> Date: Mon, Nov 11, 2019 21:20 PM To: "ruotianluo/pytorch-faster-rcnn"<[email protected]>; Cc: "happybored"<[email protected]>;"Comment"<[email protected]>; Subject: Re: [ruotianluo/pytorch-faster-rcnn] -> keep_inds = torch.cat([fg_inds, bg_inds], 0) (Pdb) (#155)
I got this question because I want to insert another convolution layers,so I fix it by giving these layers weights.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub, or unsubscribe.
where we should Add these lines? I added them to network.py but does not work again. in faster rcnn we do not have query and ... and also i checked that lines we have the same parameter for normal_init.
I have the same question,because i use the res50.pth which is downloaded from other website,I fix it by downloading the res50.pth from google driver the author gived.it may help you.
You mean we should use specific type of res net for the model? If I want to test the model on VGG16, it doesn't work.