Grid-R-CNN
Grid-R-CNN copied to clipboard
python tools/test.py configs/grid_rcnn_r50_fpn_2x.py checkpoints/grid_rcnn_res50.pth --show loading annotations into memory... Traceback (most recent call last): File "tools/test.py", line 189, in main() File "tools/test.py", line 145, in main dataset = get_dataset(cfg.data.test) File...
" !python tools/test.py grid_rcnn_r50_fpn_2x.py grid_rcnn_res50.pth --show " I try to run this code output like this Traceback (most recent call last): File "tools/test.py", line 12, in from mmdet.apis import init_dist...
I want to get the bboxes' x,y,w,h. But I can't find any modules or methods to get them.How can I do to gain them?
I tried to train Grid R-CNN with **grid_rcnn_r50_fpn_2x.py**, I used 4 gpus, setting lr=0.01 and warmup_iters=14660(2 epochs) 。The training goes well for now except that the training speed is very...
@luxiin @siyuanren Why `random_jitter`?? What is the purpose of this??
in the paper, before the grid-branch, the proposals from rpn will go through the classificaiton branch. so in the classification branch, it only has the cls-loss? or still has the...
hi @siyuanren why do u get `grid_points` by dividing `2W` instead of `W` in[ these two lines](https://github.com/STVIR/Grid-R-CNN/blob/23ef988911b3b68fe8d5b21225995d6b392ee7b6/mmdet/models/mask_heads/grid_head.py#L162-L163)? and what do[ these lines](https://github.com/STVIR/Grid-R-CNN/blob/23ef988911b3b68fe8d5b21225995d6b392ee7b6/mmdet/models/mask_heads/grid_head.py#L157-L159) do as below? ``` for i in range(9):...