Detectron.pytorch icon indicating copy to clipboard operation
Detectron.pytorch copied to clipboard

A pytorch implementation of Detectron. Both training from scratch and inferring directly from pretrained Detectron weights are available.

Results 100 Detectron.pytorch issues
Sort by recently updated
recently updated
newest added

I used mynn.DataParallel during inference but found it costs lots of cpu. How can I do inference without mynn.DataParallel?

### Expected results I want to train a custom database with 3 classes on the model 'e2e_mask_rcnn_R-50-FPN_1x'. I have set up the database according to the COCO format and I...

Hi all, I am trying to add lighthead module on faster rcnn. I add a new light_branch on faster_rcnn_heads.py which conbines the functions of box_head and box_out. This module needs...

## PLEASE FOLLOW THESE INSTRUCTIONS BEFORE POSTING 1. **Read the README.md thoroughly ! README.md is not a decoration.** 2. Please search existing *open and closed* issues in case your issue...

i just found cityscapesscripts.evaluation.instances2dict,where can i found cityscapesscripts.evaluation.instances2dict_with_polygons function?

Hi, I want to convert this model to tensorrt. If someone has done please share guidance. It would be great help. In addition to this I am using torch2trt and...

Added support for: 1. PyTorch 1.0: Borrowed code from `facebookresearch/maskrcnn-benchmark` for `ROIPool`, `ROIAlign` and `NMS`. 2. Pascal VOC 2007 and 2012: Followed the implementation of `facebookresearch/Detectron` to add support for...

After training finished, I ran this command: python tools/test_net.py --dataset my_dataset --cfg configs/baselines/e2e_faster_rcnn_R-50-C4_1x.yaml --load_ckpt Outputs/e2e_faster_rcnn_R-50-C4_1x/Feb06-15-50-25_k2_step/ --multi-gpu-testing This creates a directory at {the/parent/dir/of/checkpoint}/test. However, the "test" directory itself is empty. I...