Skip to content
Snippets Groups Projects
  1. Oct 15, 2020
  2. Oct 14, 2020
  3. Oct 12, 2020
  4. Oct 07, 2020
  5. Oct 06, 2020
  6. Oct 05, 2020
  7. Oct 03, 2020
  8. Oct 01, 2020
  9. Sep 30, 2020
  10. Sep 29, 2020
  11. Sep 28, 2020
  12. Sep 26, 2020
    • Chong Zhou's avatar
      YOLACT (#3456) · d460a531
      Chong Zhou authored
      
      * YOLACT (not the final commit, so please don't review)
      
      * Implementation notes for YOLACT
      
      * Modify yolact_r50.py
      
      * Update YOLACT configs
      
      * Add YOLACT README
      
      * Adjust according to the first round of review
      
      * Handle the corner case when gt_mask is empty
      
      * Add unit tests for YOLACT heads
      
      * Add unit tests for YOLACT forward
      
      * Adjust according to Kai's comments, except for gt_mask filtering
      
      * Change use_OHEM to use_ohem in unit tests
      
      * Update config in YOLACT unit tests
      
      * merge bbox overlap and batch bbox overlap
      
      * fix unit test
      
      * refactor some codes and fix some bugs
      
      * fix isort
      
      * fix ci
      
      * update model link
      
      * fix cfg path
      
      * support batch test
      
      * Make get_seg_masks faster
      
      * fix format
      
      * update readme
      
      Co-authored-by: default avatarCao Yuhang <yhcao6@gmail.com>
      Unverified
      d460a531
    • Lei Yang's avatar
      Unverified
      f282b394
    • yuzhj's avatar
      fix reppoints bug (#3836) · cda75f95
      yuzhj authored
      Unverified
      cda75f95
  13. Sep 25, 2020
    • Qiaofei Li's avatar
      Supports for Translate augmentation. (#3687) · 21271e3a
      Qiaofei Li authored
      * re-implement Translate augmentation using mmcv.imtranslate
      
      * add translate abstractmethod for base class
      
      * add PolygonMasks supports toy
      
      * toy commit
      
      * add supports for PolygonMasks
      
      * merge translate.py into auto_augment.py and add unit test for AutoAugment equipped with Translate
      
      * move some variables in call function to self
      
      * fix raising IndexError when getitem from empty index for PolygonMasks
      
      * remove unnecessary interpolation
      
      * add assertion message for fill_val when translating PolygonMasks
      
      * add format
      
      * add comments
      
      * fix handle conflicts
      
      * fix module not registered
      Unverified
      21271e3a
    • tianyuandu's avatar
      add centripetal head (#3390) · 1142d394
      tianyuandu authored
      * add centripetal head
      
      * update var names in CentripetalHead
      
      * pre-commit
      
      * modify init_weight to align performance
      
      * add config and README
      
      * fix lint
      
      * update docstring
      
      * update README.md and model_zoo.md
      Unverified
      1142d394
    • Yosuke Shinya's avatar
      Clean outdated comments (#3833) · 53bd2bbe
      Yosuke Shinya authored
      Unverified
      53bd2bbe
    • Qiaofei Li's avatar
      Add augmentations which only transform image (e.g. Constrast, Equalize, Color, Brightness). (#3643) · 165eddc5
      Qiaofei Li authored
      * implements augmentation which only transform images (e.g. Color,Sharpness) in process
      
      * Add augs which only transform image (e.g. Sharpness, Equalize, Color) in process.
      
      * remove test_augonlyimg.py
      
      * re-implement color,brightness,equalize,contrast using mmcv
      
      * rename aug_only_img as img_augment
      
      * remove aug_only_img related files
      
      * merge img_augment.py into auto_augment.py
      Unverified
      165eddc5
  14. Sep 24, 2020
    • Wenwei Zhang's avatar
      [enhance]: Update tutorials for changing training settings (#3778) · 8e29b954
      Wenwei Zhang authored
      
      * update tutorials for changing training settings
      
      * update
      
      * Update details of hook
      
      * resolve comments
      
      * reformat
      
      * add customize workflow
      
      * clarify
      
      * rephrase
      
      * rephrase
      
      * fix comments
      
      Co-authored-by: default avatarCao Yuhang <yhcao6@gmail.com>
      Unverified
      8e29b954
    • Qiaofei Li's avatar
      Add Rotate Augmentation. (#3619) · 9ee13ab6
      Qiaofei Li authored
      * add Rotate augmentation init
      
      * add coco_dummy data for unit test of augmentations
      
      * add coco_dummy data for unit test of augmentations
      
      * add Rotate augmentation
      
      * remove duplicated warpAffine declaration.
      
      * remove unnecessary coco_dummy folder
      
      * re-implements rotate augmentation upon mmcv.imrotate
      
      * fix uint test
      
      * reformat
      
      * add supports for PolygonMasks
      
      * handle __init__ conflicts
      
      * unchange
      
      * pull from master and merge rotate.py into auto_augment.py
      
      * add unit test for autoaugment equipped with rotate
      
      * move random_negative_prob to self and reformat assertion message
      Unverified
      9ee13ab6
    • Ryan Li's avatar
      Fix bc break of fp16 (#3822) · bf01bdd5
      Ryan Li authored
      * fix bc break of mmdet.core.fp16, refactor import of wrap_fp16_model
      
      * changed warning method
      
      * added docstring for Depr_Fp16OptimizerHook
      
      * docformatter
      
      * fix docstring
      
      * changed names from depr to deprecated
      Unverified
      bf01bdd5
    • Yosuke Shinya's avatar
      Support TTA of RetinaNet and GFL (#3638) · 9c95543e
      Yosuke Shinya authored
      * Move RepPoints TTA to mixin class for reuse
      
      * Support TTA of RetinaNet
      
      * Support TTA of GFL
      
      * Update to use BBoxTestMixin in dense_heads
      
      * Update for v2.4.0 inference
      Unverified
      9c95543e
  15. Sep 23, 2020
    • Qiaofei Li's avatar
      Add Shear augmentation. (#3656) · 868f7e57
      Qiaofei Li authored
      * add Shear augmentation.
      
      * remove duplicated warpAffine declaration.
      
      * fix shear bboxes
      
      * re-implements Shear augmentation using mmcv.imshear
      
      * fix the name of some variables
      
      * reformat
      
      * add shear abstractmethod for BaseInstanceMasks
      
      * supports for PolygonMasks
      
      * add docstring
      
      * add more unit test
      
      * reformat assertion message
      
      * remove unnecessary comma in function
      
      * refactor
      
      * remove unnecessary
      
      * remove unnecessary copy
      
      * mergt shear.py into auto_augment.py
      
      * add unit test for autoaugment equipped with shear
      Unverified
      868f7e57
  16. Sep 22, 2020
Loading