(CVPR 2021 Oral) Open World Object Detection
 
 
 
 
Go to file
Joseph 73ade98fcf - Changes to data-modelling
- Evalualting the effect of training with known unknowns,
- Plotting energy and tsne
2020-11-03 16:59:41 +05:30
configs - Changes to data-modelling 2020-11-03 16:59:41 +05:30
datasets Updates 2020-10-27 15:08:41 +05:30
demo Detectron2 2020-09-29 05:47:18 +05:30
detectron2 - Changes to data-modelling 2020-11-03 16:59:41 +05:30
dev Detectron2 2020-09-29 05:47:18 +05:30
docker Detectron2 2020-09-29 05:47:18 +05:30
docs Detectron2 2020-09-29 05:47:18 +05:30
projects Detectron2 2020-09-29 05:47:18 +05:30
tests Detectron2 2020-09-29 05:47:18 +05:30
tools - Changes to data-modelling 2020-11-03 16:59:41 +05:30
GETTING_STARTED.md Detectron2 2020-09-29 05:47:18 +05:30
INSTALL.md Detectron2 2020-09-29 05:47:18 +05:30
LICENSE Detectron2 2020-09-29 05:47:18 +05:30
MODEL_ZOO.md Detectron2 2020-09-29 05:47:18 +05:30
README.md Contrastive clustering in the latent space: using cdist and max-margin 2020-10-16 07:57:39 +05:30
setup.cfg Detectron2 2020-09-29 05:47:18 +05:30
setup.py Detectron2 2020-09-29 05:47:18 +05:30

README.md

Detectron2 is Facebook AI Research's next generation software system that implements state-of-the-art object detection algorithms. It is a ground-up rewrite of the previous version, Detectron, and it originates from maskrcnn-benchmark.

What's New

  • It is powered by the PyTorch deep learning framework.
  • Includes more features such as panoptic segmentation, Densepose, Cascade R-CNN, rotated bounding boxes, PointRend, DeepLab, etc.
  • Can be used as a library to support different projects on top of it. We'll open source more research projects in this way.
  • It trains much faster.

See our blog post to see more demos and learn about detectron2.

Installation

See INSTALL.md.

Quick Start

See GETTING_STARTED.md, or the Colab Notebook.

Learn more at our documentation. And see projects/ for some projects that are built on top of detectron2.

Model Zoo and Baselines

We provide a large set of baseline results and trained models available for download in the Detectron2 Model Zoo.

License

Detectron2 is released under the Apache 2.0 license.

Citing Detectron2

If you use Detectron2 in your research or wish to refer to the baseline results published in the Model Zoo, please use the following BibTeX entry.

@misc{wu2019detectron2,
  author =       {Yuxin Wu and Alexander Kirillov and Francisco Massa and
                  Wan-Yen Lo and Ross Girshick},
  title =        {Detectron2},
  howpublished = {\url{https://github.com/facebookresearch/detectron2}},
  year =         {2019}
}

Command

python tools/train_net.py --num-gpus 4 --config-file ./configs/PascalVOC-Detection/faster_rcnn_R_50_C4.yaml SOLVER.IMS_PER_BATCH 4 SOLVER.BASE_LR 0.005