- 31 Jan, 2020 2 commits
-
-
Cao Yuhang authored
-
Cao Yuhang authored
-
- 22 Jan, 2020 1 commit
-
-
Jon Crall authored
* reorganize requirements, make albumentations optional * fix flake8 error * force older version of Pillow until torchvision is fixed * make imagecorruptions optional and update INSTALL.dm * update INSTALL.md * Add note about pillow version * Add build requirements to install instructions
-
- 21 Jan, 2020 2 commits
-
-
Kamran Melikov authored
* First Draft On branch non-color-images Changes to be committed: modified: mmdet/datasets/pipelines/loading.py * Add option to load non color images Add 'color_type' parameter to LoadImageFromFile class Change __repr__ method accordingly Since non-color images maybe two dimensional expand image dimensions if necessary in DefaultFormatBundle and ImageToTensor classes Changes to be committed: modified: mmdet/datasets/pipelines/formating.py modified: mmdet/datasets/pipelines/loading.py * Fix RandomCrop to work with grayscale images Changes to be committed: modified: mmdet/datasets/pipelines/transforms.py * Modify retrieving w, h of padded image in anchor heads This addreses problems with single channel images for which the shape is tuple with 2 values Changes to be committed: modified: mmdet/models/anchor_heads/anchor_head.py modified: mmdet/models/anchor_heads/guided_anchor_head.py modified: mmdet/models/anchor_heads/reppoints_head.py -
Cao Yuhang authored
-
- 04 Jan, 2020 1 commit
-
-
GothicAi authored
* add instaboost in coco.py * Revert "add instaboost in coco.py" This reverts commit 51af81ef88991782d54750761ef2dd394c7a38a8. * add instaboost in data pipeline * code format * Update requirements.txt * add README.md * bug fix * add link * Update README.md * install instaboost when necessary, keep r50 cfgs only * ready to merge * fix typo * pass yapf * minor formats Co-authored-by:
Wenwei Zhang <40779233+ZwwWayne@users.noreply.github.com> Co-authored-by:
Kai Chen <chenkaidev@gmail.com>
-
- 02 Jan, 2020 1 commit
-
-
saltknox authored
-
- 27 Dec, 2019 1 commit
-
-
Cao Yuhang authored
* add crop seg to RandomCrop trans * minor fix comment
-
- 25 Dec, 2019 1 commit
-
-
Kai Chen authored
-
- 24 Dec, 2019 2 commits
-
-
Cao Yuhang authored
* Split seg trans * Modify cfg * fix typo
-
Jon Crall authored
* Allow for images to contain zero true detections * Allow for empty assignment in PointAssigner * Allow ApproxMaxIouAssigner to return an empty result * Fix CascadeRNN forward when entire batch has no truth * Correctly assign boxes to background when there is no truth * Fix assignment tests * Make flatten robust * Fix bbox loss with empty pred/truth * Fix logic error in BBoxHead.loss * Add tests for empty truth cases * tests faster rcnn empty forward * Skip roipool forward tests if torchvision is not installed * Add tests for bbox/anchor heads * Consolidate test_forward and test_forward2 * Fix assign_results.labels = None when gt_labels is given; Add test for this case * Fix OHEM Sampler with zero truth * remove xdev * resolve 3 reviews * Fix flake8 * refactoring * fix yaml format * add filter flag * minor fix * delete redundant code in load anno * fix flake8 errors * quick fix for empty truth with masks * fix yapf error * fix mask padding for empty masks Co-authored-by:
Cao Yuhang <yhcao6@gmail.com> Co-authored-by:
Kai Chen <chenkaidev@gmail.com>
-
- 16 Dec, 2019 1 commit
-
-
goolhanrry authored
-
- 12 Dec, 2019 1 commit
-
-
Kai Chen authored
-
- 28 Nov, 2019 2 commits
-
-
Wenwei Zhang authored
* reformat for yapf0.29 * fix conflicts of yapf and flake8 * flake 8 is prior than yapf
-
Matthew Dawkins authored
* Fix issues on no ignore boxes specified * add check during loading * change back * change transform.py back * fix box_filed bug & reformat * use append rather than extend
-
- 27 Nov, 2019 1 commit
-
-
Kai Chen authored
-
- 24 Nov, 2019 1 commit
-
-
Thomas Hossler authored
-
- 10 Nov, 2019 1 commit
-
-
Korabelnikov Aleks authored
* Update GETTING_STARTED.md Found out that this method is required. The torch.nn.Module doesn't contain this method thus you need to implement it * update docstring see https://github.com/open-mmlab/mmdetection/issues/1582 * correct for flake8 * flake8: trailing space has removed
-
- 07 Nov, 2019 1 commit
-
-
Korabelnikov Aleks authored
Allows to use not only 0.5 probability.
-
- 05 Nov, 2019 1 commit
-
-
continue authored
* Fix bug: index out of range when num_extra < len(indice) * Fix bug: index out of range when num_extra < len(indice) * formatter code
-
- 23 Oct, 2019 2 commits
-
-
Matthew Dawkins authored
* Still work if no img_prefix specified * Update default param to be empty string
-
Cao Yuhang authored
* Add seg transform to Expand and MinIoUCrop * fix bug of repr
-
- 11 Oct, 2019 1 commit
-
-
Lawrence authored
* Delete transforms.py * Delete extra_aug.py * Update __init__.py
-
- 08 Oct, 2019 1 commit
-
-
Jon Crall authored
* Expand docs * Fix flake8 errors * Clarify Collect docstring * revert to the original version
-
- 05 Oct, 2019 1 commit
-
-
tyomj authored
* Albumentations wrapper * 2 single quote format * version >= 0.3.2
-
- 25 Sep, 2019 1 commit
-
-
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
-
- 11 Sep, 2019 1 commit
-
-
Cao Yuhang authored
-
- 09 Sep, 2019 1 commit
-
-
gfjiangly authored
* add g++ requirement for INSTALL.md. * fix bugs for cropping masks in RandomCrop. * simplify the code to fix bugs for cropping masks in RandomCrop.
-
- 29 Aug, 2019 1 commit
-
-
Cao Yuhang authored
* fix bug of ssd * clean
-
- 24 Aug, 2019 1 commit
-
-
Cao Yuhang authored
-
- 23 Aug, 2019 1 commit
-
-
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
-
- 07 Aug, 2019 1 commit
-
-
Dhananjai Sharma authored
* Added vertical flipping in bbox_flip * Fixed linting errors * Fixed linting errors * Added a blank line in docstrings * Fixed linting errors.
-
- 06 Aug, 2019 1 commit
-
-
simon wu authored
-
- 02 Aug, 2019 2 commits
-
-
l-ilya authored
-
Claudio Michaelis authored
* Add robust detection benchmark * Update readmes * Changed readmes for pull request * Ensure pep8 conformity * fixed formatting * Fix yapf errors * minor formatting * fix imports order
-
- 31 Jul, 2019 2 commits
- 29 Jul, 2019 1 commit
-
-
Kai Chen authored
* format the codebase with yapf * add yapf to travis
-
- 27 Jul, 2019 2 commits
-
-
Claudio Michaelis authored
* added cityscapes * updated configs * removed wip configs * Add initial dataset instructions * Add cityscapes readme * Add explanation for lr scaling * Ensure pep8 conformity * Add CityscapesDataset to the registry * add benchmark * rename config, modify README.md * fix typo * fix typo in config * modify INSTALL.md Update information how to arrange cityscapes data. * Add cityscapes class names
-
Kai Chen authored
-