-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Has anyone tested this net? Does it actually work? #4
Comments
What is your mAP? I also have tried to train it but result in a very low accuracy. |
mAP is almost zero. I have tried to debug and it appears that bbox regressor doesn't work at all. |
Hi, I find that this code has a serious bug in rfcn.py at 212 and 213, I think it should be self.rfcn_bbox = Conv2d(1024,778, 1,1, bn=False) self.rfcn_score = Conv2d(1024, 77self.n_classes,1,1,bn=False), do you change here? If you do that, can it work well? |
Hi, I find that this code has a serious bug in rfcn.py at 212 and 213, I think it should be self.rfcn_bbox = Conv2d(1024,778, 1,1, bn=False) self.rfcn_score = Conv2d(1024, 77self.n_classes,1,1,bn=False), do you change here? If you do that, can it work well?@Rizhiy |
@noUmbrella after your solved this bug, do you work well? what is your mAP? |
I test the mAP is very small, about 0.25. I found that, the classify is right and the regression is not work@RichardMrLu |
I have the same experience as @noUmbrella, classification works fine, but bbox regression is very bad. |
Hi, do you find the bug? Does the Position Pooling Layer exists problem? @Rizhiy |
Hi, do you find the bug? Does the Position Pooling Layer exists problem? @RichardMrLu |
@noUmbrella = = sorry, I didn't run the code. |
I have changed self.rfcn_bbox and self.rfcn_score ,but when i trained the network,bbox regression can not converge.Does anybody can help? |
@jjprincess For me, it also either doesn't converge or converges poorly and I get very low mAP. |
@Rizhiy There may be some wrong with the code,I has changed the frame “mxnet”,I got right results. |
@jjprincess Yes, I'm already using that version, but I like PyTorch more than MXNet. |
I use VOC2007 so I change the imdb_name='voc_2007_trainval' in train.py in line36. |
look at this repo |
This repo stop updating for more than one year. If someone still interesting in pytorch R-FCN, pls look at another pytorch implement - princewang1994/R-FCN.pytorch, thanks~ |
I have tried to train it, but got just noise as the output. Has anyone managed to train it?
The text was updated successfully, but these errors were encountered: