mmdetection-enot
Fork of mmdetection repository for using with ENOT framework
Science Score: 54.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
13 of 256 committers (5.1%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.7%) to scientific vocabulary
Keywords from Contributors
Repository
Fork of mmdetection repository for using with ENOT framework
Basic Info
- Host: GitHub
- Owner: ENOT-AutoDL
- License: apache-2.0
- Language: Python
- Default Branch: main
- Size: 23.9 MB
Statistics
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
- Releases: 0
Metadata Files
README.md
Documentation: https://mmdetection.readthedocs.io/
Introduction
English | 简体中文
MMDetection is an open source object detection toolbox based on PyTorch. It is a part of the OpenMMLab project.
The master branch works with PyTorch 1.3+. 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.

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, maskrcnn-benchmark and SimpleDet.
- State of the art
The toolbox stems from the codebase developed by the MMDet team, who won COCO Detection Challenge in 2018, and we keep pushing it forward.
Apart from MMDetection, we also released a library mmcv for computer vision research, which is heavily depended on by this toolbox.
License
This project is released under the Apache 2.0 license.
Changelog
v2.16.0 was released in 30/08/2021. Please refer to changelog.md for details and release history. A comparison between v1.x and v2.0 codebases can be found in compatibility.md.
Benchmark and model zoo
Results and models are available in the model zoo.
Supported backbones:
- [x] ResNet (CVPR'2016)
- [x] ResNeXt (CVPR'2017)
- [x] VGG (ICLR'2015)
- [x] HRNet (CVPR'2019)
- [x] RegNet (CVPR'2020)
- [x] Res2Net (TPAMI'2020)
- [x] ResNeSt (ArXiv'2020)
Supported methods:
- [x] RPN (NeurIPS'2015)
- [x] Fast R-CNN (ICCV'2015)
- [x] Faster R-CNN (NeurIPS'2015)
- [x] Mask R-CNN (ICCV'2017)
- [x] Cascade R-CNN (CVPR'2018)
- [x] Cascade Mask R-CNN (CVPR'2018)
- [x] SSD (ECCV'2016)
- [x] RetinaNet (ICCV'2017)
- [x] GHM (AAAI'2019)
- [x] Mask Scoring R-CNN (CVPR'2019)
- [x] Double-Head R-CNN (CVPR'2020)
- [x] Hybrid Task Cascade (CVPR'2019)
- [x] Libra R-CNN (CVPR'2019)
- [x] Guided Anchoring (CVPR'2019)
- [x] FCOS (ICCV'2019)
- [x] RepPoints (ICCV'2019)
- [x] Foveabox (TIP'2020)
- [x] FreeAnchor (NeurIPS'2019)
- [x] NAS-FPN (CVPR'2019)
- [x] ATSS (CVPR'2020)
- [x] FSAF (CVPR'2019)
- [x] PAFPN (CVPR'2018)
- [x] Dynamic R-CNN (ECCV'2020)
- [x] PointRend (CVPR'2020)
- [x] CARAFE (ICCV'2019)
- [x] DCNv2 (CVPR'2019)
- [x] Group Normalization (ECCV'2018)
- [x] Weight Standardization (ArXiv'2019)
- [x] OHEM (CVPR'2016)
- [x] Soft-NMS (ICCV'2017)
- [x] Generalized Attention (ICCV'2019)
- [x] GCNet (ICCVW'2019)
- [x] Mixed Precision (FP16) Training (ArXiv'2017)
- [x] InstaBoost (ICCV'2019)
- [x] GRoIE (ICPR'2020)
- [x] DetectoRS (ArXiv'2020)
- [x] Generalized Focal Loss (NeurIPS'2020)
- [x] CornerNet (ECCV'2018)
- [x] Side-Aware Boundary Localization (ECCV'2020)
- [x] YOLOv3 (ArXiv'2018)
- [x] PAA (ECCV'2020)
- [x] YOLACT (ICCV'2019)
- [x] CentripetalNet (CVPR'2020)
- [x] VFNet (ArXiv'2020)
- [x] DETR (ECCV'2020)
- [x] Deformable DETR (ICLR'2021)
- [x] CascadeRPN (NeurIPS'2019)
- [x] SCNet (AAAI'2021)
- [x] AutoAssign (ArXiv'2020)
- [x] YOLOF (CVPR'2021)
- [x] Seasaw Loss (CVPR'2021)
- [x] CenterNet (CVPR'2019)
- [x] YOLOX (ArXiv'2021)
Some other methods are also supported in projects using MMDetection.
Installation
Please refer to get_started.md for installation.
Getting Started
Please see get_started.md for the basic usage of MMDetection. We provide colab tutorial, and full guidance for quick run with existing dataset and with new dataset for beginners. There are also tutorials for finetuning models, adding new dataset, designing data pipeline, customizing models, customizing runtime settings and useful tools.
Please refer to FAQ for frequently asked questions.
Contributing
We appreciate all contributions to improve MMDetection. Please refer to 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: OpenMMLab foundational library for computer vision.
- MIM: MIM Installs OpenMMLab Packages.
- MMClassification: OpenMMLab image classification toolbox and benchmark.
- MMDetection: OpenMMLab detection toolbox and benchmark.
- MMDetection3D: OpenMMLab's next-generation platform for general 3D object detection.
- MMSegmentation: OpenMMLab semantic segmentation toolbox and benchmark.
- MMAction2: OpenMMLab's next-generation action understanding toolbox and benchmark.
- MMTracking: OpenMMLab video perception toolbox and benchmark.
- MMPose: OpenMMLab pose estimation toolbox and benchmark.
- MMEditing: OpenMMLab image and video editing toolbox.
- MMOCR: A Comprehensive Toolbox for Text Detection, Recognition and Understanding.
- MMGeneration: OpenMMLab image and video generative models toolbox.
Owner
- Name: ENOT
- Login: ENOT-AutoDL
- Kind: organization
- Website: enot.ai
- Repositories: 4
- Profile: https://github.com/ENOT-AutoDL
Citation (CITATION.cff)
cff-version: 1.2.0 message: "If you use this software, please cite it as below." authors: - name: "MMDetection Contributors" title: "OpenMMLab Detection Toolbox and Benchmark" date-released: 2018-08-22 url: "https://github.com/open-mmlab/mmdetection" license: Apache-2.0
GitHub Events
Total
Last Year
Committers
Last synced: 10 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Kai Chen | c****v@g****m | 310 |
| Wenwei Zhang | 4****e | 166 |
| Cao Yuhang | y****6@g****m | 155 |
| Jerry Jiarui XU | x****6@g****m | 109 |
| Haian Huang(深度眸) | 1****9@q****m | 92 |
| pangjm | p****u@g****m | 49 |
| Shilong Zhang | 6****g | 40 |
| ThangVu | t****k@g****m | 32 |
| Jiaqi Wang | 1****0@l****k | 30 |
| Wang Xinjiang | w****g@s****m | 28 |
| RangiLyu | l****i@g****m | 27 |
| Guangchen Lin | 3****0@q****m | 26 |
| Qiaofei Li | q****i@g****m | 22 |
| Jon Crall | e****c@g****m | 21 |
| BigDong | y****g@t****n | 16 |
| RunningLeon | m****g@s****m | 15 |
| tianyuandu | t****u@g****m | 13 |
| Yosuke Shinya | 4****y | 12 |
| David de la Iglesia Castro | d****o@g****m | 11 |
| Ryan Li | x****e@c****k | 10 |
| Maxim Bonnaerens | m****m@b****e | 9 |
| Kamran Melikov | m****k@g****m | 9 |
| simon wu | w****y@s****m | 8 |
| yuzhj | 3****j | 8 |
| wangruohui | 1****i | 7 |
| lizz | i****e | 7 |
| Ye Liu | y****v@o****m | 7 |
| Chrisfsj2051 | 3****1 | 7 |
| Korabelnikov Aleks | n****i@y****u | 6 |
| Dahua Lin | l****a@g****m | 5 |
| and 226 more... | ||
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 1
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 1
- Total pull request authors: 0
- Average comments per issue: 0.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- vansin (1)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- actions/checkout v2 composite
- actions/setup-python v2 composite
- codecov/codecov-action v1.0.10 composite
- actions/checkout v2 composite
- actions/checkout v2 composite
- actions/setup-python v2 composite
- pytorch/pytorch ${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel build
- pytorch/pytorch ${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel build
- cython *
- numpy *
- docutils ==0.16.0
- recommonmark *
- sphinx ==4.0.2
- sphinx_markdown_tables *
- sphinx_rtd_theme ==0.5.2
- mmcv-full >=1.3.8
- albumentations >=0.3.2
- cityscapesscripts *
- imagecorruptions *
- scipy *
- sklearn *
- mmcv *
- torch *
- torchvision *
- matplotlib *
- numpy *
- pycocotools *
- pycocotools-windows *
- six *
- terminaltables *
- asynctest * test
- codecov * test
- flake8 * test
- interrogate * test
- isort ==4.3.21 test
- kwarray * test
- mmtrack * test
- onnx ==1.7.0 test
- onnxruntime ==1.5.1 test
- pytest * test
- ubelt * test
- xdoctest >=0.10.0 test
- yapf * test