xiong-zhitong / pytorch_RFCN

279 stars 54 forks source link

a confused point during reading code. #11

Open Peeta586 opened 5 years ago

Peeta586 commented 5 years ago

in rfcn.py

self.rfcn_score = Conv2d(1024,7*7*8, 1,1, bn=False) self.rfcn_bbox = Conv2d(1024, 7*7*self.n_classes,1,1,bn=False)

if it is wrong? whether it needs to be put upside down. self.rfcn_bbox = Conv2d(1024,7*7*8, 1,1, bn=False) self.rfcn_score = Conv2d(1024, 7*7*self.n_classes,1,1,bn=False)

Wulin123asda commented 1 year ago

I also confuse abou this code,and approve with your change.but I wanna know what is the 8 mean in rfcn_bbox?