1. 12 2月, 2019 1 次提交
    • F
      [WIP] Add Keypoint R-CNN (#69) · e0a525a0
      Francisco Massa 提交于
      * [WIP] Keypoints inference on C2 models work
      
      * Training seems to work
      
      Still gives slightly worse results
      
      * e2e training works but gives 3 and 5 mAP less
      
      * Add modification proposed by @ChangErgou
      
      Improves mAP by 1.5 points, to 0.514 and 0.609
      
      * Keypoints reproduce expected results
      
      * Clean coco.py
      
      * Linter + remove unnecessary code
      
      * Merge criteria for empty bboxes in has_valid_annotation
      
      * Remove trailing print
      
      * Add demo support for keypoints
      
      Still need further cleanups and improvements, like adding fields support for the other ops in Keypoints
      
      * More cleanups and misc improvements
      
      * Fixes after rebase
      
      * Add information to the readme
      
      * Fix md formatting
      e0a525a0
  2. 07 2月, 2019 1 次提交
    • T
      Registry for RoI Box Predictors (#402) · 1589ce09
      Tong Xiao 提交于
      * Registry for RoI Box Predictors
      
      - Add a registry ROI_BOX_PREDICTOR
      - Use the registry in roi_box_predictors.py, replacing the local factory
      - Minor changes in structures/bounding_box.py: when copying a box with
      fields, check if the field exists
      - Minor changes in logger.py: make filename a optional argument with
      default value of "log.txt"
      
      * Add Argument skip_missing=False
      1589ce09
  3. 06 2月, 2019 1 次提交
  4. 05 2月, 2019 2 次提交
    • A
    • Z
      agnostic-regression for bbox (#390) · 9cb251d3
      zimenglan 提交于
      * make pixel indexes 0-based for bounding box in pascal voc dataset
      
      * replacing all instances of torch.distributed.deprecated with torch.distributed
      
      * replacing all instances of torch.distributed.deprecated with torch.distributed
      
      * add GroupNorm
      
      * add GroupNorm -- sort out yaml files
      
      * use torch.nn.GroupNorm instead, replace 'use_gn' with 'conv_block' and use 'BaseStem'&'Bottleneck' to simply codes
      
      * modification on 'group_norm' and 'conv_with_kaiming_uniform' function
      
      * modification on yaml files in configs/gn_baselines/ and reduce the amount of indentation and code duplication
      
      * use 'kaiming_uniform' to initialize resnet, disable gn after fc layer, and add dilation into ResNetHead
      
      * agnostic-regression for bbox
      9cb251d3
  5. 04 2月, 2019 1 次提交
  6. 01 2月, 2019 1 次提交
  7. 31 1月, 2019 1 次提交
  8. 30 1月, 2019 1 次提交
  9. 25 1月, 2019 1 次提交
  10. 23 1月, 2019 4 次提交
    • Z
      use 'kaiming_uniform' to initialize resnet, disable gn after fc layer (#377) · 9b53d15c
      zimenglan 提交于
      * make pixel indexes 0-based for bounding box in pascal voc dataset
      
      * replacing all instances of torch.distributed.deprecated with torch.distributed
      
      * replacing all instances of torch.distributed.deprecated with torch.distributed
      
      * add GroupNorm
      
      * add GroupNorm -- sort out yaml files
      
      * use torch.nn.GroupNorm instead, replace 'use_gn' with 'conv_block' and use 'BaseStem'&'Bottleneck' to simply codes
      
      * modification on 'group_norm' and 'conv_with_kaiming_uniform' function
      
      * modification on yaml files in configs/gn_baselines/ and reduce the amount of indentation and code duplication
      
      * use 'kaiming_uniform' to initialize resnet, disable gn after fc layer, and add dilation into ResNetHead
      9b53d15c
    • F
      Add note about cudapopcallerror (#375) · 7cdf122d
      Forest 提交于
      7cdf122d
    • C
      Add COCO_2017 in paths_catalog.py (#373) · 1cd78d10
      Cheng-Yang Fu 提交于
      * Add new section "Projects using maskrcnn-benchmark".
      
      * Update README.md
      
      update the format.
      
      * Update README.md
      
      * Add coco_2017_train and coco_2017_val
      
      * Update README.md
      
      Add the instructions about COCO_2017
      1cd78d10
    • C
      Adding a new section to include the works using maskrcnn-benchmark. (#371) · 193e8c01
      Cheng-Yang Fu 提交于
      * Add new section "Projects using maskrcnn-benchmark".
      
      * Update README.md
      
      update the format.
      
      * Update README.md
      193e8c01
  11. 22 1月, 2019 1 次提交
  12. 21 1月, 2019 4 次提交
    • F
      Revert "swich to new pytorch api (#359)" (#364) · 205fa4e7
      Francisco Massa 提交于
      This reverts commit 6cbb3d27.
      205fa4e7
    • 图波列夫's avatar
      swich to new pytorch api (#359) · 6cbb3d27
      图波列夫 提交于
      6cbb3d27
    • Z
      add GroupNorm (#346) · 3b27142e
      zimenglan 提交于
      * make pixel indexes 0-based for bounding box in pascal voc dataset
      
      * replacing all instances of torch.distributed.deprecated with torch.distributed
      
      * replacing all instances of torch.distributed.deprecated with torch.distributed
      
      * add GroupNorm
      
      * add GroupNorm -- sort out yaml files
      
      * use torch.nn.GroupNorm instead, replace 'use_gn' with 'conv_block' and use 'BaseStem'&'Bottleneck' to simply codes
      
      * modification on 'group_norm' and 'conv_with_kaiming_uniform' function
      
      * modification on yaml files in configs/gn_baselines/ and reduce the amount of indentation and code duplication
      3b27142e
    • 图波列夫's avatar
      Uniform annotation format (#357) · abf36b94
      图波列夫 提交于
      abf36b94
  13. 14 1月, 2019 2 次提交
  14. 30 12月, 2018 1 次提交
  15. 22 12月, 2018 1 次提交
  16. 21 12月, 2018 2 次提交
    • L
      Update checkpoint.py (#299) · 9b6aa824
      Lei Yang 提交于
      * Update checkpoint.py
      
      if edit "{save_dir}/last_checkpoint" by vim, "\n" will auto append to the end of file. which will raise 
      
      ```
      FileNotFoundError: [Errno 2] No such file or directory: 'save_dir/model_0060000.pth\n'
      ```
      
      * Update checkpoint.py
      
      if edit "{save_dir}/last_checkpoint" by vim, "\n" will auto append to the end of file. which will raise
      ```
      FileNotFoundError: [Errno 2] No such file or directory: 'save_dir/model_0060000.pth\n'
      ```
      9b6aa824
    • B
      Added distributed training check (#287) · f66c1d40
      benjaminrwilson 提交于
      f66c1d40
  17. 18 12月, 2018 1 次提交
  18. 17 12月, 2018 1 次提交
  19. 14 12月, 2018 2 次提交
  20. 06 12月, 2018 2 次提交
  21. 05 12月, 2018 2 次提交
  22. 04 12月, 2018 3 次提交
  23. 28 11月, 2018 1 次提交
  24. 27 11月, 2018 3 次提交