Skip to content
Snippets Groups Projects
  1. Aug 05, 2020
    • robin Han's avatar
      Pytorch2onnx (#3075) · 2f32a47a
      robin Han authored
      
      * Update pytorch2onnx.py which using new logic to convert pytorch to ONNX
      
      * use standard API to check whether in ONNX convert process
      
      * only compare the score value while verifying results between ONNX and pytorch
      
      * move import onnx before import torch, or something weird will happen
      
      * use real images for input
      
      * modifying the way of calling nms
      
      * modify docstring for bbox2result, and remove unnecessary part for onnx exporting
      
      * modify the 'Convert to ONNX' part in docs
      
      * replace or to | in docstring
      
      * update according to the latest mmcv
      
      * add normalize part
      
      * raise error while using low version mmcv
      
      * minor update
      
      * minor update
      
      Co-authored-by: default avatarJiarui XU <xvjiarui0826@gmail.com>
      Unverified
      2f32a47a
  2. Jul 30, 2020
  3. Jul 21, 2020
  4. Jul 20, 2020
  5. Jul 10, 2020
    • Cao Yuhang's avatar
      clean op (#3232) · 5f2cdedd
      Cao Yuhang authored
      
      * clean op
      
      * clean
      
      * update build.yml
      
      * fix setup
      
      * change ci mmcv version
      
      * change ci mmcv version
      
      * add install pre-build mmcv instructions
      
      * update mmcv url, move some unnit tests to mmcv
      
      * update ci mmcv
      
      * test
      
      * test
      
      * test
      
      * fix unit test
      
      * fix unit test
      
      * fix onnx script
      
      * update mmcv url
      
      * fix typo
      
      * fix some doc
      
      * Bump version
      
      * resolve comments
      
      * Fix version bug
      
      Co-authored-by: default avatarZwwWayne <wayne.zw@outlook.com>
      Unverified
      5f2cdedd
  6. Jul 09, 2020
  7. Jul 06, 2020
  8. Jul 04, 2020
  9. Jun 30, 2020
    • implus's avatar
      GFocal (#3097) · 39e6257c
      implus authored
      * add gfocal losses
      
      * add gfl head, its related code, configs
      
      * fix 2x config bug
      
      * add most model and log in gfl README
      
      * update gfl model and log
      
      * Update transforms.py
      
      modify variables  L, T, R, B   to  left, top, right, bottom
      
      * Update gfocal_loss.py
      
      modify variables into meaningful names:
      * pt -> scale_factor
      * a -> pos   b -> pos_label
      * disl -> dis_left  disr -> dis_right
      * wl -> weight_left  wr -> weight_right
      
      * Update gfocal_loss.py
      
      update formats
      
      * remove duplicated get_bboxes/IoU calculation, make QFL consistent
      
      * add all docstring in gfl_head.py and gfocal_loss.py
      Unverified
      39e6257c
  10. Jun 26, 2020
  11. Jun 11, 2020
  12. Jun 07, 2020
  13. May 31, 2020
  14. May 24, 2020
    • Cao Yuhang's avatar
      Code Release: Prime Sample Attention in Object Detection (CVPR 2020) (#2626) · e903b5c1
      Cao Yuhang authored
      * save
      
      * add retinanet and fix some inconsistent
      
      * fix registry
      
      * fix typos
      
      * fix unmap bug
      
      * fix some bugs
      
      * clean
      
      * minor fix
      
      * fix k b
      
      * add more cfgs
      
      * fix detach
      
      * add some benchmarks
      
      * add some comments
      
      * add more comments
      
      * change test rpn proposal num
      
      * add more models
      
      * modify accroding comments
      
      * more fix
      
      * add pape link, fix some grammar error
      
      * modify according to comments
      
      * add unit test
      
      * add unit tests for head
      
      * fix some comments, add pape link
      
      * add pisa roi head unittest
      
      * fix README.md
      
      * fix year
      Unverified
      e903b5c1
  15. May 10, 2020
  16. May 07, 2020
  17. May 05, 2020
    • Kai Chen's avatar
      Add API documentation (#2610) · 0cf70c2a
      Kai Chen authored
      * add api doc
      
      * update mock modules and fix requirements
      
      * fix autodoc modules
      
      * remove tmp file
      
      * add release version in docs/conf.py
      
      * fix docstring styles
      Unverified
      0cf70c2a
  18. May 04, 2020
  19. May 03, 2020
  20. May 01, 2020
    • Wang Xinjiang's avatar
      Implement FSAF on V2.0 (#2521) · 1ebc2f38
      Wang Xinjiang authored
      
      * starting to merge fsaf
      
      * changed configs
      
      * changed bbox_coder
      
      * get_targets fun in AnchorHead class is modified to enable additional returns from _get_target_single
      
      * effective area assigner and tblr bbox_coder are implemented
      
      * added fsaf_head and config
      
      * added more fsaf configs
      
      * fixed the nan bbox_loss by clamping bbox_pred with min=1e-4
      
      * fixed the nan bbox_loss by clamping bbox_pred with min=1e-4
      
      * changed config
      
      * formatter
      
      * changed docstring
      
      * Added ignored pixel-class pair for FSAF
      
      * More elegant assignment for overlapping objects
      
      * more documents in effective area assigner
      
      * fixed a bug in object overlay
      
      * Added no gt_bboxes case and pytest for assigner
      
      * Added no gt_bboxes case and pytest for assigner
      
      * changed default config
      
      * fixed small bugs in FSAF head doc example
      
      * resolved pr review comments.
      1. Formats of comments and docstrings are modified
      2. Obsolete arguments are removed from FSAFHead
      3. AssignResults class is revised to be more compatible with old version
      
      * Added more comments to FSAFHead
      
      * resolved pr review comments
      
      * resolved pr review comments
      1. More flexible CenterRegionAssigner bbox priority
      2. More flexible tblr_coder by adding normalize_by_wh flag
      3. README modifications with model link
      4. More docstrings and comments
      5. Reformatted
      6. Change of default normalizer in TBLRBBoxCoder from 1.0 to 4.0
      
      * Corrected FSAF model path in readme
      
      * Fixed the bug of bbox weights in fsaf head
      
      Co-authored-by: default avatarwangxinjiang <wangxinjiang@sensetime.com>
      Unverified
      1ebc2f38
    • Jerry Jiarui XU's avatar
      change register_module to func (#2569) · fdc0c6d5
      Jerry Jiarui XU authored
      Unverified
      fdc0c6d5
  21. Apr 30, 2020
  22. Apr 28, 2020
    • Wenwei Zhang's avatar
      rm bboxes[:,:4] (#2550) · be15b0c4
      Wenwei Zhang authored
      * rm bboxes[:,:4]
      
      * Move the bbox size selection and check into iou2d_calculator
      
      * Add bbox shape check in bbox_overlaps
      
      * Validate the bbox sizes
      Unverified
      be15b0c4
  23. Apr 27, 2020
  24. Apr 25, 2020
  25. Apr 23, 2020
    • Jerry Jiarui XU's avatar
      Use mmcv Registry (#2511) · 4cfc0a95
      Jerry Jiarui XU authored
      * use mmcv Registry instead of mmdet
      
      * merged registry and builder
      
      * merge dataset builder registry
      
      * remove circulate import in bbox
      
      * rename registry to builder
      Unverified
      4cfc0a95
  26. Apr 21, 2020
  27. Apr 19, 2020
  28. Apr 16, 2020
    • Jerry Jiarui XU's avatar
      Merge target into head (#2429) · 79014dfa
      Jerry Jiarui XU authored
      * merge target into head
      
      * remove squeeze in image_to_level, add doc string
      
      * reformat doc string
      
      * update docs, rename to get_target
      
      * reanme unify all target functions to get_targets
      
      * set test_cfg as default cfg for get_bboxes
      
      * fixed test
      
      * rename get_targets in atss, fcos ,fovea, reppoint
      
      * rename get_det_bboxes to get_bboxes
      Unverified
      79014dfa
  29. Apr 15, 2020
  30. Apr 10, 2020
  31. Apr 08, 2020
    • Wenwei Zhang's avatar
      Refactor category orders in heads (#2374) · 70eedbd3
      Wenwei Zhang authored
      
      * Refactor (all): all category -1 in anchor/bbox head and anchor/bbox target assign
      
      * Fix (datasets): remove label + 1 in datasets
      
      * Fix (bbox_head): fix bug of fc_cls that forget + 1
      
      * Fix (atss_head & free_anchor): fix cat -1 bugs
      
      * Fix (mask_head): remove label + 1 in mask heads
      
      * fix atss
      
      * Fix (rpn): fix cross_entropy_loss bug of RPN
      
      * Fix (anchor_head): fix typo
      
      * Refactor (anchor_head): use background_label rather than num_classes to indicate background class
      
      * Refactor (docstring): add and reformat docstrings
      
      * fix mask iou head
      
      * Fix (mask_head): fix cat -1 bug
      
      * Fix (mask_head): fix bug in mask inference
      
      * Add (tests): add tests for mask rcnn and mask heads
      
      * Refactor (unittest): refactor test_forward
      
      * Refactor (new_empty): use new_full rather than new_empty
      
      * Refactor (background_label): check background_label
      
      * Add TODO
      
      * Refactor (unittest): allow BP in unittest
      
      Co-authored-by: default avatarCao Yuhang <yhcao6@gmail.com>
      Unverified
      70eedbd3
  32. Apr 06, 2020
    • Wenwei Zhang's avatar
      Change V2.0 coors (#2380) · 7ed8d51e
      Wenwei Zhang authored
      * Refactor (all): change coordinate system
      
      * Fix (mask_head): fix cat -1 bug in mask_paste
      
      * Fix (unittest)
      : modify unittest and pass CI
      
      * reformat to pass CI
      
      * Fix round coordinates bugs
      
      * clean file
      
      * Fix (test): use cpu version of aligned roi_align in tests
      
      * Refactor (mask): clean np.stack
      
      * Refactor (head): reformat code and fix missing -1
      
      * Reformat: reformat and add doc strings
      
      * Refactor (mask_head): more clea docstring
      Unverified
      7ed8d51e
  33. Apr 02, 2020
  34. Mar 21, 2020
  35. Feb 23, 2020
  36. Feb 15, 2020
Loading