first commit

pull/3/head
Dahun Kim 2021-08-31 16:43:32 +09:00
parent 8d78758a2f
commit 18cf7c03b1
224 changed files with 0 additions and 452 deletions

View File

@ -1,186 +0,0 @@
Metadata-Version: 2.1
Name: mmdet
Version: 2.8.0
Summary: OpenMMLab Detection Toolbox and Benchmark
Home-page: https://github.com/open-mmlab/mmdetection
Author: OpenMMLab
Author-email: openmmlab@gmail.com
License: Apache License 2.0
Description: <div align="center">
<img src="resources/mmdet-logo.png" width="600"/>
</div>
**News**: We released the technical report on [ArXiv](https://arxiv.org/abs/1906.07155).
Documentation: https://mmdetection.readthedocs.io/
## Introduction
MMDetection is an open source object detection toolbox based on PyTorch. It is
a part of the OpenMMLab project developed by [Multimedia Laboratory, CUHK](http://mmlab.ie.cuhk.edu.hk/).
The master branch works with **PyTorch 1.3 to 1.6**.
The old v1.x branch works with PyTorch 1.1 to 1.4, but v2.0 is strongly recommended for faster speed, higher performance, better design and more friendly usage.
![demo image](resources/coco_test_12510.jpg)
### Major features
- **Modular Design**
We decompose the detection framework into different components and one can easily construct a customized object detection framework by combining different modules.
- **Support of multiple frameworks out of box**
The toolbox directly supports popular and contemporary detection frameworks, *e.g.* Faster RCNN, Mask RCNN, RetinaNet, etc.
- **High efficiency**
All basic bbox and mask operations run on GPUs. The training speed is faster than or comparable to other codebases, including [Detectron2](https://github.com/facebookresearch/detectron2), [maskrcnn-benchmark](https://github.com/facebookresearch/maskrcnn-benchmark) and [SimpleDet](https://github.com/TuSimple/simpledet).
- **State of the art**
The toolbox stems from the codebase developed by the *MMDet* team, who won [COCO Detection Challenge](http://cocodataset.org/#detection-leaderboard) in 2018, and we keep pushing it forward.
Apart from MMDetection, we also released a library [mmcv](https://github.com/open-mmlab/mmcv) for computer vision research, which is heavily depended on by this toolbox.
## License
This project is released under the [Apache 2.0 license](LICENSE).
## Changelog
v2.8.0 was released in 04/01/2021.
Please refer to [changelog.md](docs/changelog.md) for details and release history.
A comparison between v1.x and v2.0 codebases can be found in [compatibility.md](docs/compatibility.md).
## Benchmark and model zoo
Results and models are available in the [model zoo](docs/model_zoo.md).
Supported backbones:
- [x] ResNet
- [x] ResNeXt
- [x] VGG
- [x] HRNet
- [x] RegNet
- [x] Res2Net
- [x] ResNeSt
Supported methods:
- [x] [RPN](configs/rpn)
- [x] [Fast R-CNN](configs/fast_rcnn)
- [x] [Faster R-CNN](configs/faster_rcnn)
- [x] [Mask R-CNN](configs/mask_rcnn)
- [x] [Cascade R-CNN](configs/cascade_rcnn)
- [x] [Cascade Mask R-CNN](configs/cascade_rcnn)
- [x] [SSD](configs/ssd)
- [x] [RetinaNet](configs/retinanet)
- [x] [GHM](configs/ghm)
- [x] [Mask Scoring R-CNN](configs/ms_rcnn)
- [x] [Double-Head R-CNN](configs/double_heads)
- [x] [Hybrid Task Cascade](configs/htc)
- [x] [Libra R-CNN](configs/libra_rcnn)
- [x] [Guided Anchoring](configs/guided_anchoring)
- [x] [FCOS](configs/fcos)
- [x] [RepPoints](configs/reppoints)
- [x] [Foveabox](configs/foveabox)
- [x] [FreeAnchor](configs/free_anchor)
- [x] [NAS-FPN](configs/nas_fpn)
- [x] [ATSS](configs/atss)
- [x] [FSAF](configs/fsaf)
- [x] [PAFPN](configs/pafpn)
- [x] [Dynamic R-CNN](configs/dynamic_rcnn)
- [x] [PointRend](configs/point_rend)
- [x] [CARAFE](configs/carafe/README.md)
- [x] [DCNv2](configs/dcn/README.md)
- [x] [Group Normalization](configs/gn/README.md)
- [x] [Weight Standardization](configs/gn+ws/README.md)
- [x] [OHEM](configs/faster_rcnn/faster_rcnn_r50_fpn_ohem_1x_coco.py)
- [x] [Soft-NMS](configs/faster_rcnn/faster_rcnn_r50_fpn_soft_nms_1x_coco.py)
- [x] [Generalized Attention](configs/empirical_attention/README.md)
- [x] [GCNet](configs/gcnet/README.md)
- [x] [Mixed Precision (FP16) Training](configs/fp16/README.md)
- [x] [InstaBoost](configs/instaboost/README.md)
- [x] [GRoIE](configs/groie/README.md)
- [x] [DetectoRS](configs/detectors/README.md)
- [x] [Generalized Focal Loss](configs/gfl/README.md)
- [x] [CornerNet](configs/cornernet/README.md)
- [x] [Side-Aware Boundary Localization](configs/sabl/README.md)
- [x] [YOLOv3](configs/yolo/README.md)
- [x] [PAA](configs/paa/README.md)
- [x] [YOLACT](configs/yolact/README.md)
- [x] [CentripetalNet](configs/centripetalnet/README.md)
- [x] [VFNet](configs/vfnet/README.md)
- [x] [DETR](configs/detr/README.md)
- [x] [CascadeRPN](configs/cascade_rpn/README.md)
Some other methods are also supported in [projects using MMDetection](./docs/projects.md).
## Installation
Please refer to [get_started.md](docs/get_started.md) for installation.
## Getting Started
Please see [get_started.md](docs/get_started.md) for the basic usage of MMDetection.
We provide [colab tutorial](demo/MMDet_Tutorial.ipynb), and full guidance for quick run [with existing dataset](docs/1_exist_data_model.md) and [with new dataset](docs/2_new_data_model.md) for beginners.
There are also tutorials for [finetuning models](docs/tutorials/finetune.md), [adding new dataset](docs/tutorials/new_dataset.md), [designing data pipeline](docs/tutorials/data_pipeline.md), [customizing models](docs/tutorials/customize_models.md), [customizing runtime settings](docs/tutorials/customize_runtime.md) and [useful tools](docs/useful_tools.md).
Please refer to [FAQ](docs/faq.md) for frequently asked questions.
## Contributing
We appreciate all contributions to improve MMDetection. Please refer to [CONTRIBUTING.md](.github/CONTRIBUTING.md) for the contributing guideline.
## Acknowledgement
MMDetection is an open source project that is contributed by researchers and engineers from various colleges and companies. We appreciate all the contributors who implement their methods or add new features, as well as users who give valuable feedbacks.
We wish that the toolbox and benchmark could serve the growing research community by providing a flexible toolkit to reimplement existing methods and develop their own new detectors.
## Citation
If you use this toolbox or benchmark in your research, please cite this project.
```
@article{mmdetection,
title = {{MMDetection}: Open MMLab Detection Toolbox and Benchmark},
author = {Chen, Kai and Wang, Jiaqi and Pang, Jiangmiao and Cao, Yuhang and
Xiong, Yu and Li, Xiaoxiao and Sun, Shuyang and Feng, Wansen and
Liu, Ziwei and Xu, Jiarui and Zhang, Zheng and Cheng, Dazhi and
Zhu, Chenchen and Cheng, Tianheng and Zhao, Qijie and Li, Buyu and
Lu, Xin and Zhu, Rui and Wu, Yue and Dai, Jifeng and Wang, Jingdong
and Shi, Jianping and Ouyang, Wanli and Loy, Chen Change and Lin, Dahua},
journal= {arXiv preprint arXiv:1906.07155},
year={2019}
}
```
## Projects in OpenMMLab
- [MMCV](https://github.com/open-mmlab/mmcv): OpenMMLab foundational library for computer vision.
- [MMClassification](https://github.com/open-mmlab/mmclassification): OpenMMLab image classification toolbox and benchmark.
- [MMDetection](https://github.com/open-mmlab/mmdetection): OpenMMLab detection toolbox and benchmark.
- [MMDetection3D](https://github.com/open-mmlab/mmdetection3d): OpenMMLab's next-generation platform for general 3D object detection.
- [MMSegmentation](https://github.com/open-mmlab/mmsegmentation): OpenMMLab semantic segmentation toolbox and benchmark.
- [MMAction2](https://github.com/open-mmlab/mmaction2): OpenMMLab's next-generation action understanding toolbox and benchmark.
- [MMTracking](https://github.com/open-mmlab/mmtracking): OpenMMLab video perception toolbox and benchmark.
- [MMPose](https://github.com/open-mmlab/mmpose): OpenMMLab pose estimation toolbox and benchmark.
- [MMEditing](https://github.com/open-mmlab/mmediting): OpenMMLab image and video editing toolbox.
Keywords: computer vision,object detection
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Provides-Extra: all
Provides-Extra: tests
Provides-Extra: build
Provides-Extra: optional

View File

@ -1,182 +0,0 @@
README.md
setup.cfg
setup.py
mmdet/__init__.py
mmdet/version.py
mmdet.egg-info/PKG-INFO
mmdet.egg-info/SOURCES.txt
mmdet.egg-info/dependency_links.txt
mmdet.egg-info/not-zip-safe
mmdet.egg-info/requires.txt
mmdet.egg-info/top_level.txt
mmdet/apis/__init__.py
mmdet/apis/inference.py
mmdet/apis/test.py
mmdet/apis/train.py
mmdet/core/__init__.py
mmdet/core/anchor/__init__.py
mmdet/core/anchor/anchor_generator.py
mmdet/core/anchor/builder.py
mmdet/core/anchor/point_generator.py
mmdet/core/anchor/utils.py
mmdet/core/bbox/__init__.py
mmdet/core/bbox/builder.py
mmdet/core/bbox/demodata.py
mmdet/core/bbox/transforms.py
mmdet/core/bbox/assigners/__init__.py
mmdet/core/bbox/assigners/approx_max_iou_assigner.py
mmdet/core/bbox/assigners/assign_result.py
mmdet/core/bbox/assigners/atss_assigner.py
mmdet/core/bbox/assigners/base_assigner.py
mmdet/core/bbox/assigners/center_region_assigner.py
mmdet/core/bbox/assigners/grid_assigner.py
mmdet/core/bbox/assigners/hungarian_assigner.py
mmdet/core/bbox/assigners/max_iou_assigner.py
mmdet/core/bbox/assigners/point_assigner.py
mmdet/core/bbox/assigners/region_assigner.py
mmdet/core/bbox/coder/__init__.py
mmdet/core/bbox/coder/base_bbox_coder.py
mmdet/core/bbox/coder/bucketing_bbox_coder.py
mmdet/core/bbox/coder/delta_xywh_bbox_coder.py
mmdet/core/bbox/coder/legacy_delta_xywh_bbox_coder.py
mmdet/core/bbox/coder/pseudo_bbox_coder.py
mmdet/core/bbox/coder/tblr_bbox_coder.py
mmdet/core/bbox/coder/yolo_bbox_coder.py
mmdet/core/bbox/iou_calculators/__init__.py
mmdet/core/bbox/iou_calculators/builder.py
mmdet/core/bbox/iou_calculators/iou2d_calculator.py
mmdet/core/bbox/match_costs/__init__.py
mmdet/core/bbox/match_costs/builder.py
mmdet/core/bbox/match_costs/match_cost.py
mmdet/core/bbox/samplers/__init__.py
mmdet/core/bbox/samplers/base_sampler.py
mmdet/core/bbox/samplers/combined_sampler.py
mmdet/core/bbox/samplers/instance_balanced_pos_sampler.py
mmdet/core/bbox/samplers/iou_balanced_neg_sampler.py
mmdet/core/bbox/samplers/ohem_sampler.py
mmdet/core/bbox/samplers/pseudo_sampler.py
mmdet/core/bbox/samplers/random_sampler.py
mmdet/core/bbox/samplers/sampling_result.py
mmdet/core/bbox/samplers/score_hlr_sampler.py
mmdet/core/evaluation/__init__.py
mmdet/core/evaluation/bbox_overlaps.py
mmdet/core/evaluation/class_names.py
mmdet/core/evaluation/eval_hooks.py
mmdet/core/evaluation/mean_ap.py
mmdet/core/evaluation/recall.py
mmdet/core/export/__init__.py
mmdet/core/export/pytorch2onnx.py
mmdet/core/fp16/__init__.py
mmdet/core/fp16/deprecated_fp16_utils.py
mmdet/core/mask/__init__.py
mmdet/core/mask/mask_target.py
mmdet/core/mask/structures.py
mmdet/core/mask/utils.py
mmdet/core/post_processing/__init__.py
mmdet/core/post_processing/bbox_nms.py
mmdet/core/post_processing/merge_augs.py
mmdet/core/utils/__init__.py
mmdet/core/utils/dist_utils.py
mmdet/core/utils/misc.py
mmdet/core/visualization/__init__.py
mmdet/core/visualization/image.py
mmdet/datasets/__init__.py
mmdet/datasets/builder.py
mmdet/datasets/coco.py
mmdet/datasets/coco_split.py
mmdet/datasets/cocoeval_wrappers.py
mmdet/datasets/custom.py
mmdet/datasets/dataset_wrappers.py
mmdet/datasets/utils.py
mmdet/datasets/pipelines/__init__.py
mmdet/datasets/pipelines/auto_augment.py
mmdet/datasets/pipelines/compose.py
mmdet/datasets/pipelines/formating.py
mmdet/datasets/pipelines/instaboost.py
mmdet/datasets/pipelines/loading.py
mmdet/datasets/pipelines/test_time_aug.py
mmdet/datasets/pipelines/transforms.py
mmdet/datasets/samplers/__init__.py
mmdet/datasets/samplers/distributed_sampler.py
mmdet/datasets/samplers/group_sampler.py
mmdet/models/__init__.py
mmdet/models/builder.py
mmdet/models/backbones/__init__.py
mmdet/models/backbones/darknet.py
mmdet/models/backbones/detectors_resnet.py
mmdet/models/backbones/detectors_resnext.py
mmdet/models/backbones/hourglass.py
mmdet/models/backbones/hrnet.py
mmdet/models/backbones/regnet.py
mmdet/models/backbones/res2net.py
mmdet/models/backbones/resnest.py
mmdet/models/backbones/resnet.py
mmdet/models/backbones/resnext.py
mmdet/models/backbones/ssd_vgg.py
mmdet/models/backbones/trident_resnet.py
mmdet/models/dense_heads/__init__.py
mmdet/models/dense_heads/anchor_head.py
mmdet/models/dense_heads/base_dense_head.py
mmdet/models/dense_heads/dense_test_mixins.py
mmdet/models/dense_heads/oln_rpn_head.py
mmdet/models/dense_heads/rpn_head.py
mmdet/models/dense_heads/rpn_test_mixin.py
mmdet/models/detectors/__init__.py
mmdet/models/detectors/base.py
mmdet/models/detectors/faster_rcnn.py
mmdet/models/detectors/mask_rcnn.py
mmdet/models/detectors/rpn.py
mmdet/models/detectors/rpn_detector.py
mmdet/models/detectors/two_stage.py
mmdet/models/losses/__init__.py
mmdet/models/losses/accuracy.py
mmdet/models/losses/ae_loss.py
mmdet/models/losses/balanced_l1_loss.py
mmdet/models/losses/cross_entropy_loss.py
mmdet/models/losses/focal_loss.py
mmdet/models/losses/gaussian_focal_loss.py
mmdet/models/losses/gfocal_loss.py
mmdet/models/losses/ghm_loss.py
mmdet/models/losses/iou_loss.py
mmdet/models/losses/mse_loss.py
mmdet/models/losses/pisa_loss.py
mmdet/models/losses/smooth_l1_loss.py
mmdet/models/losses/utils.py
mmdet/models/losses/varifocal_loss.py
mmdet/models/necks/__init__.py
mmdet/models/necks/fpn.py
mmdet/models/roi_heads/__init__.py
mmdet/models/roi_heads/base_roi_head.py
mmdet/models/roi_heads/oln_roi_head.py
mmdet/models/roi_heads/standard_roi_head.py
mmdet/models/roi_heads/test_mixins.py
mmdet/models/roi_heads/bbox_heads/__init__.py
mmdet/models/roi_heads/bbox_heads/bbox_head.py
mmdet/models/roi_heads/bbox_heads/convfc_bbox_head.py
mmdet/models/roi_heads/bbox_heads/convfc_bbox_score_head.py
mmdet/models/roi_heads/mask_heads/__init__.py
mmdet/models/roi_heads/mask_heads/coarse_mask_head.py
mmdet/models/roi_heads/mask_heads/fcn_mask_head.py
mmdet/models/roi_heads/mask_heads/fused_semantic_head.py
mmdet/models/roi_heads/mask_heads/grid_head.py
mmdet/models/roi_heads/mask_heads/htc_mask_head.py
mmdet/models/roi_heads/mask_heads/mask_point_head.py
mmdet/models/roi_heads/mask_heads/maskiou_head.py
mmdet/models/roi_heads/roi_extractors/__init__.py
mmdet/models/roi_heads/roi_extractors/base_roi_extractor.py
mmdet/models/roi_heads/roi_extractors/generic_roi_extractor.py
mmdet/models/roi_heads/roi_extractors/single_level_roi_extractor.py
mmdet/models/roi_heads/shared_heads/__init__.py
mmdet/models/roi_heads/shared_heads/res_layer.py
mmdet/models/utils/__init__.py
mmdet/models/utils/builder.py
mmdet/models/utils/gaussian_target.py
mmdet/models/utils/positional_encoding.py
mmdet/models/utils/res_layer.py
mmdet/models/utils/transformer.py
mmdet/utils/__init__.py
mmdet/utils/collect_env.py
mmdet/utils/contextmanagers.py
mmdet/utils/logger.py
mmdet/utils/profiling.py
mmdet/utils/util_mixins.py

View File

@ -1 +0,0 @@

View File

@ -1 +0,0 @@

View File

@ -1,54 +0,0 @@
matplotlib
mmpycocotools
numpy
six
terminaltables
[all]
cython
numpy
albumentations>=0.3.2
cityscapesscripts
imagecorruptions
mmlvis
scipy
sklearn
matplotlib
mmpycocotools
numpy
six
terminaltables
asynctest
codecov
flake8
interrogate
isort==4.3.21
kwarray
pytest
ubelt
xdoctest>=0.10.0
yapf
[build]
cython
numpy
[optional]
albumentations>=0.3.2
cityscapesscripts
imagecorruptions
mmlvis
scipy
sklearn
[tests]
asynctest
codecov
flake8
interrogate
isort==4.3.21
kwarray
pytest
ubelt
xdoctest>=0.10.0
yapf

View File

@ -1 +0,0 @@
mmdet

Some files were not shown because too many files have changed in this diff Show More