- Feb 25, 2021
-
-
ZhangShilong authored
* rpn head refactor * guided anchor * add deprecate warning * add more warning for set ori augs * fix unitest * change base * cascade rpn * cornernet and centri * grid frcnn ok * ga anchor ok * legacy ok * pisa ok * tridnet ok * fix tutorals * use ConfigDict
-
Wenwei Zhang authored
* Add type of runner in configs * fix missing config
-
- Feb 18, 2021
-
-
Cao Yuhang authored
* sup customize runner * fix typo * use build runner * minor fix * modify according to comments * add an assertion * swap order * fix tutorial
-
- Jan 27, 2021
-
-
ZhangShilong authored
* add CompatibleCheckHook * check val * add docstr * move hook to default runtime * add unitest * fix a typo * fix unitest * update docs * add check for CLASSES is None * fix doc
-
- Jan 18, 2021
-
-
Jerry Jiarui XU authored
* Move train_cfg/test_cfg into model * fixed fsaf * fixed missing
-
- Jan 11, 2021
-
-
Haian Huang(深度眸) authored
-
- Dec 09, 2020
-
-
Jerry Jiarui XU authored
* Add markdown lint in pre-commit hook * add markdown lint
-
- Nov 27, 2020
-
-
LXXXXR authored
-
- Oct 23, 2020
-
-
Jiaqi Wang authored
* ga ret r50 model url update * update url
-
- Sep 03, 2020
-
-
Jerry Jiarui XU authored
* fixed typos * replace url with download * update to http
-
- Jul 14, 2020
-
-
Wenwei Zhang authored
* Complete model zoo * Update memory
-
- Jul 10, 2020
-
-
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:
ZwwWayne <wayne.zw@outlook.com>
-
- Jun 01, 2020
-
-
Cao Yuhang authored
-
- May 28, 2020
-
-
Jerry Jiarui XU authored
* update model_zoo url * update mmcv version requirement
-
- May 24, 2020
-
-
Wang Xinjiang authored
* Add upsample_cfg support in FPN * small fix * Add multiple extra conv sources * small logical fix * Add neck tests for fpn * Add neck tests for fpn * fixed several typos * resolved issues * Removed extra_convs_source option * added necks to apis.rst * change according to comments * reconfigured configs
-
- May 21, 2020
-
-
Cao Yuhang authored
* update inf speed * update some models * update benchmark config and model * add no aug config * merge log model table with performance table * add detectron2 url
-
- May 02, 2020
-
-
Cao Yuhang authored
* add configs for all models * fix some configs * Add benchmark models * update some benchmarks * Fix retina config * add more benchmarks * update MODEL_ZOO.md * fix cascade mask num_class bug * change caffe pretrained url * fix paramwise_cfg bug * fix paramwise cfg * restrict minimum h and w in crop_and_resize * add grad clip for fcos * add grad clip for ga retinanet * fix grad clip * fix img norm * fix rpn loss bbox * fix rpn proposal num * fix url * clean * update comparison * minor update * add grad clip for guided anchoring * fix some typos * add inference time details * clean Co-authored-by:
ZwwWayne <wayne.zw@outlook.com>
-
- Apr 22, 2020
-
-
Wenwei Zhang authored
* Support V1.0 anchor generator * Reformat code * Add registry for anchor generator * Reformat docstring * fix isort * Refactor anchor generator * reformat doc, add unittest * Refactor retinahead anchor generator * Fix test_anchor device bug * Fix docstring * Resolve comments with more unittests * Fix atss bug and add more unittest * Resolve comments * Add more asset and check
-
- Apr 19, 2020
-
-
Jerry Jiarui XU authored
* add coder registry * add coder for single stage * rename to bbox_coder * add doc string * add doc string * change default
-
- Apr 08, 2020
-
-
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:
Cao Yuhang <yhcao6@gmail.com>
-
- Apr 04, 2020
-
-
Jiaqi Wang authored
-
- Mar 31, 2020
-
-
Wenwei Zhang authored
* create roi_head * create roi_head mv shared_head into roi_head * fix conflict * refactor(cascade rcnn): create cascade head in roi head, simplify cascade rcnn * type: fix scope: cascade_head subject: mv stage_loss_weight from train_cfg to roi_head creation * type: fix scope: roi_heads subject: handle the case when train_cfg is None * type: fix scope: roi_heads mask inference subject: fix test_cfg.rcnn bug to test_cfg * fix mask eval bug * refactor(double_head): refactor double head roi head * fix(double_head): clean code and fix __init__.py * refactor(mask scoring): create mask scoring roi head * refactor(htc_head): add htc_head * fix(htc_head): add htc_head in __init__.py * fix (htc_head): fix htc_head bugs * fix (ms_roi_head): rm test_cfg.rcnn to test_cfg * feature (grid rcnn): grid roi head * fix (grid_head): fix grid head bug * reformat and change all cfgs * reformat (roi_head): reformat __init__.py for isort=4.3.21 * fix roi_head test bug * fix (carafe): change carafe cfgs to use roi_head * fix (roi_head): fix missing roi_head refactor * reformat to pass CI * test all cfgs * match keys of configs with previous commit 77d073a * add and pass unittest for all roi heads * Refactor (roi_head): extract abstract base class for roi head * Refactor (roi_head): refactor init functions * Refactor (roi_head): weight init * Refactor (roi_head): add _bbox_forwrd & _mask_forward as basic functions * Fix (grid_roi_head): fix bug in bbox_forward_train * Refactor (roi_head): change to use img.device in forward_dummy) * Refactor (roi_heads): simplify init functions and _mask_forward * Fix (cascade_roi_head): fix init bug of cascade roi_head * Refactor (roi_head): use dict as outputs of _bbox_forward and _mask_forward * Refactor (test_config): scan valid configs rather than list them all
-
- Mar 24, 2020
-
-
Jerry Jiarui XU authored
* delete work_dir in all configs * add comment on work_dir priority
-
- Mar 23, 2020
-
-
Jerry Jiarui XU authored
* add new config sample and check scripts * context managere to prevent import * refactor backbone, add caffe * add fast rcnn * all basci config done * rm coco_proposal * add scratch, wider_face, voc * add reppoints * delete device id, auto resume * add libra_rcnn, ms_rcnn, nas_fpn * add hrnet, fcos * add free_anchor, gn, grid_rcnn, guided_anchoring, gcnet, ghm, gn+ws * finished all, but some need refactor and unified logic * fixed albu * update ReseNet101 * reduce ResNet101, add norm_cfg, 4conv1fc * refactor caffe backbone * merge act_cfg, dcn from master * rename 2fc head, add 4conv1fc head * delete 4con1fc model * rename components -> _base_ * flatten _base_ * refactor _base_ structure * refactor config structure * reduce _base/models * rename all config * add _coco inside configs * fixed _coco in files * fixed albu in test * migrate to new sys * fixed test * fixed test * rm cascade, fast_rcnn * rm cascade, fast_rcnn from _base_ * fixed fcos_center * rename from rule * collopse third party model * fixed test * fixed some minor bug * rename gn-neck_head -> gn-neck+head
-
- Mar 11, 2020
-
-
Jerry Jiarui XU authored
* add norm_cfg in ResNet pytorch backbone * delete redundent fields
-
- Mar 01, 2020
-
-
Kai Chen authored
* update pre-commit hook config * fix styles conflicting with pre-commit hooks
-
- Feb 11, 2020
-
-
Kai Chen authored
* move evaluation part to datasets * use dataset.evaluate() in testing scripts * remove redundant codes * fix some log formats * update config with evaludation * move evaluation below dataset * remove coco_utils.py and fix test_robustness Co-authored-by:
Jerry Jiarui XU <xvjiarui0826@gmail.com>
-
- Oct 24, 2019
-
-
simon wu authored
-
- Aug 23, 2019
-
-
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
-
- Jun 11, 2019
-
-
Kai Chen authored
* refactoring for losses * update configs for guided anchoring * add all imported losses to __all__ * allow weight=None for binary_cross_entropy * use losses in mmdetection for FCOSHead * bug fix for weight_reduce_loss * add eps to iou_loss and handle weight=None * unify loss api in FCOSHead * fix avg_factor
-
- May 31, 2019
-
-
Jiaqi Wang authored
-
- May 23, 2019
-
-
Jiaqi Wang authored
* add two stage w/o neck and w/ upperneck * add rpn r50 c4 * update c4 configs * fix * config update * update config * minor update * mask rcnn support c4 train and test * lr fix * cascade support upper_neck * add cascade c4 config * update config * update * update res_layer to new interface * refactoring * c4 configs update * refactoring * update rpn_c4 config * rename upper_neck as shared_head * update * update configs * update * update c4 configs * update according to commits * update * add ga rpn * test bug fix * test bug fix with loc_filter_thr is large * update configs * update configs * add ga_retinanet * ga test bug fix * update configs * update * init masked conv * update * update masked conv * update * support no ga_sampler * update * update * test with masked_conv * update comment * fix flake errors * fix flake 8 errors * refactor bounded iou loss * refactor ga_retina_head * update configs * refactor masked conv * fix flake8 error * refactor guided_anchor_head and ga_rpn_head * update configs * use_sigmoid_cls -> cls_sigmoid_loss; use_focal_loss -> cls_focal_loss * refactoring * cls_sigmoid_loss -> use_sigmoid_cls * fix flake8 error * add some docs * rename normalize to norm_cfg * update configs * add readme * update ga_faster config * update readme * update readme * rename configs as r50_caffe * merge master * refactor guided anchor target * update readme * update approx mas iou assigner * refactor guided anchor target * update docstring * refactor ga heads * fix flake8 error * update readme * update model url * update comments * refactor get anchors * update docstring * not use_loc_filter during training * add R-101 results * update to support build loss api * fix flake8 error * update readme with x-101 performances * update readme * add a link in project readme * refactor code about ga shape inside flags * update * update * add x101 config files * add ga_rpn r101 config * update some comments * add comments * add comments * update comments * fix flake8 error
-