1. 14 Oct, 2019 2 commits
  2. 11 Oct, 2019 1 commit
  3. 10 Oct, 2019 1 commit
  4. 08 Oct, 2019 2 commits
  5. 07 Oct, 2019 1 commit
    • Jon Crall's avatar
      Doctests for AnchorHead and related code (#1491) · e344e21d
      Jon Crall authored
      * Doctests for AnchorHead and related code
      
      * Fix flake8 error
      
      * resolve review on transforms.py
      
      * Resolve comments
      
      * resolve commend about foreground classes
      
      * Add reference about bounding box delta encoding
      e344e21d
  6. 05 Oct, 2019 1 commit
  7. 04 Oct, 2019 1 commit
  8. 03 Oct, 2019 2 commits
  9. 02 Oct, 2019 4 commits
  10. 25 Sep, 2019 2 commits
    • kkkio's avatar
      Fix #1223 (#1404) · 3dc9ddb7
      kkkio authored
      * Fix #1223
      
      #1223  is caused by extra > len(indice), so I add a loop to properly pad the indice list. I also changed the list concatenation from ```+=``` to ```.extend```.
      
      * Update sampler.py
      
      style
      3dc9ddb7
    • Raymond Tunstill (Kirk)'s avatar
      Fixed coco_eval bug where seg length check could be wrong (#1376) (#1384) · 78783368
      Raymond Tunstill (Kirk) authored
      * Fixed coco_eval bug where seg length check could be wrong (#1376)
      
      * Added check for segm counts field to check if the decode method is present
      
      * Changed classes length check to more general check
      
      * Fixed coco_utils.py to be more robust condition for mask lasbelling
      
      * Added seg length check to ensure two objects exist
      
      * Added type check over len check
      
      * Check for only tuple
      78783368
  11. 14 Sep, 2019 2 commits
    • Cao Yuhang's avatar
      Fix dpool (#1390) · c64beaf1
      Cao Yuhang authored
      * fix dpool
      
      * add _pair in dpool func
      c64beaf1
    • donglee's avatar
      Add tta to HTC and Cascade RCNN (#1251) · 69e93f6f
      donglee authored
      * add tta to HTC and Caccade RCNN
      
      * format file with yapf
      
      * fix import error with isort
      
      * Update htc.py
      
      * Update cascade_rcnn.py
      
      * fix bug
      
      * delete some redundant codes
      69e93f6f
  12. 11 Sep, 2019 2 commits
  13. 10 Sep, 2019 1 commit
  14. 09 Sep, 2019 1 commit
  15. 05 Sep, 2019 1 commit
  16. 31 Aug, 2019 2 commits
  17. 29 Aug, 2019 1 commit
  18. 27 Aug, 2019 1 commit
  19. 26 Aug, 2019 2 commits
  20. 25 Aug, 2019 6 commits
  21. 24 Aug, 2019 1 commit
  22. 23 Aug, 2019 1 commit
    • Kai Chen's avatar
      Make data pre-processing pipeline customizable (#935) · 0d5233a3
      Kai Chen authored
      * define data pipelines
      
      * update two config files
      
      * minor fix for config files
      
      * allow img_scale to be optional and update config
      
      * add some docstrings
      
      * add extra aug to transform
      
      * bug fix for mask resizing
      
      * fix cropping
      
      * add faster rcnn example
      
      * fix imports
      
      * fix robustness testing
      
      * add img_norm_cfg to img_meta
      
      * fix the inference api with the new data pipeline
      
      * fix proposal loading
      
      * delete args of DefaultFormatBundle
      
      * add more configs
      
      * update configs
      
      * bug fix
      
      * add a brief doc
      
      * update gt_labels in RandomCrop
      
      * fix key error for new apis
      
      * bug fix for masks of crowd bboxes
      
      * add argument data_root
      
      * minor fix
      
      * update new hrnet configs
      
      * update docs
      
      * rename MultiscaleFlipAug to MultiScaleFlipAug
      
      * add __repr__ for all transforms
      
      * move DATA_PIPELINE.md to docs/
      
      * fix image url
      0d5233a3
  23. 22 Aug, 2019 2 commits
    • Jirka Borovec's avatar
      update CI - pkg build (#1235) · 7bb38af4
      Jirka Borovec authored
      * add testing in Travis
      
      * add proj. requirements
      
      * install CUDA
      
      * def tested packages
      
      * add missing meta in setup
      
      * add empty test
      
      * restructure travis tests
      
      * add sample doctest
      
      * switch to nose2
      
      * add sample test
      
      * using pytest
      
      * minor fixes
      7bb38af4
    • Dhananjai Sharma's avatar
      Fix for gt_ignore (#1242) · 71a22f8c
      Dhananjai Sharma authored
      If list gt_ignore was empty, it should become None after the following if statement: if not gt_ignore, which was not getting handled correctly. Changed gt_ignore = gt_ignore to gt_ignore = None.
      71a22f8c