Intial repository
0 parents
Showing
with
4864 additions
and
0 deletions
.flake8
0 → 100644
.gitignore
0 → 100644
LICENSE
0 → 100644
MODEL_ZOO.md
0 → 100644
README.md
0 → 100644
configs/faster_rcnn/README.md
0 → 100644
configs/mask_rcnn/README.md
0 → 100644
configs/pascal_voc/README.md
0 → 100644
configs/retinanet/README.md
0 → 100644
csrc/cxx/operators/mask_op.h
0 → 100644
csrc/cxx/operators/mask_paste_op.cc
0 → 100644
csrc/cxx/operators/nms_op.cc
0 → 100644
csrc/cxx/operators/nms_op.h
0 → 100644
csrc/cxx/operators/retinanet_decoder_op.cc
0 → 100644
csrc/cxx/operators/retinanet_decoder_op.h
0 → 100644
csrc/cxx/operators/rpn_decoder_op.cc
0 → 100644
csrc/cxx/operators/rpn_decoder_op.h
0 → 100644
csrc/cxx/setup.py
0 → 100644
csrc/cxx/utils/detection.h
0 → 100644
csrc/cxx/utils/detection/anchors.h
0 → 100644
csrc/cxx/utils/detection/bbox.h
0 → 100644
csrc/cxx/utils/detection/cpu/mask.cc
0 → 100644
csrc/cxx/utils/detection/cpu/nms.cc
0 → 100644
csrc/cxx/utils/detection/cpu/proposals.cc
0 → 100644
csrc/cxx/utils/detection/cuda/mask.cu
0 → 100644
csrc/cxx/utils/detection/cuda/nms.cu
0 → 100644
csrc/cxx/utils/detection/cuda/proposals.cu
0 → 100644
csrc/cxx/utils/detection/iterator.h
0 → 100644
csrc/cxx/utils/detection/mask.h
0 → 100644
csrc/cxx/utils/detection/mps/mask.mm
0 → 100644
csrc/cxx/utils/detection/mps/nms.mm
0 → 100644
csrc/cxx/utils/detection/nms.h
0 → 100644
csrc/cxx/utils/detection/proposals.h
0 → 100644
csrc/cxx/utils/detection/types.h
0 → 100644
csrc/cxx/utils/detection/utils.h
0 → 100644
csrc/pyx/cython_bbox.pyx
0 → 100644
csrc/pyx/cython_nms.pyx
0 → 100644
csrc/pyx/setup.py
0 → 100644
data/datasets/README.md
0 → 100644
data/images/coco_val2017_000000001000.jpg
0 → 100644

314 KB
data/images/coco_val2017_000000031322.jpg
0 → 100644

262 KB
data/images/coco_val2017_000000113589.jpg
0 → 100644

109 KB
data/images/coco_val2017_000000560256.jpg
0 → 100644

192 KB
data/images/coco_val2017_000000570688.jpg
0 → 100644

135 KB
data/pretrained/README.md
0 → 100644
requirements.txt
0 → 100644
scripts/datasets/README.md
0 → 100644
scripts/datasets/coco.py
0 → 100644
scripts/datasets/json_dataset.py
0 → 100644
scripts/datasets/pascal_voc.py
0 → 100644
seetadet/__init__.py
0 → 100644
seetadet/core/__init__.py
0 → 100644
seetadet/core/config/__init__.py
0 → 100644
seetadet/core/config/defaults.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/core/config/yacs.py
0 → 100644
seetadet/core/coordinator.py
0 → 100644
seetadet/core/engine/__init__.py
0 → 100644
seetadet/core/engine/build.py
0 → 100644
seetadet/core/engine/lr_scheduler.py
0 → 100644
seetadet/core/engine/test_engine.py
0 → 100644
seetadet/core/engine/train_engine.py
0 → 100644
seetadet/core/engine/utils.py
0 → 100644
seetadet/core/registry.py
0 → 100644
seetadet/data/__init__.py
0 → 100644
seetadet/data/anchors/__init__.py
0 → 100644
seetadet/data/anchors/rpn.py
0 → 100644
seetadet/data/anchors/ssd.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/assigners.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/build.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/datasets/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/datasets/dataset.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/datasets/datum.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/evaluators/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/evaluators/coco_evaluator.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/evaluators/evaluator.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/evaluators/voc_eval.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/evaluators/voc_evaluator.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/loader.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/pipelines.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/structures/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/structures/mask.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/targets/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/targets/rcnn.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/targets/retinanet.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/targets/rpn.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/targets/ssd.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/data/transforms.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/backbones/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/backbones/mobilenet_v2.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/backbones/mobilenet_v3.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/backbones/resnet.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/backbones/vgg.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/build.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/decoders/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/decoders/retinanet.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/decoders/rpn.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/dense_heads/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/dense_heads/retinanet.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/dense_heads/rpn.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/dense_heads/ssd.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/detectors/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/detectors/detector.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/detectors/rcnn.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/detectors/retinanet.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/detectors/ssd.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/necks/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/necks/bifpn.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/necks/fpn.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/necks/ssd.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/roi_heads/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/roi_heads/fast_rcnn.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/models/roi_heads/mask_rcnn.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/modules/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/modules/build.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/modules/rcnn.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/modules/retinanet.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/modules/ssd.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/ops/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/ops/build.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/ops/conv.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/ops/fusion.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/ops/loss.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/ops/normalization.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/ops/onnx.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/ops/vision.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/bbox/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/bbox/helper.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/bbox/metrics.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/bbox/transforms.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/blob.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/image.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/logging.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/mask/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/mask/helper.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/mask/metrics.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/nms/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/nms/helper.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/polygon/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/polygon/helper.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/profiler/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/profiler/stats.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/profiler/timer.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/vis/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/vis/colormap.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/utils/vis/visualizer.py
0 → 100644
This diff is collapsed.
Click to expand it.
seetadet/version.py
0 → 100644
This diff is collapsed.
Click to expand it.
setup.py
0 → 100644
This diff is collapsed.
Click to expand it.
tools/__init__.py
0 → 100644
This diff is collapsed.
Click to expand it.
tools/distributed/train.py
0 → 100644
This diff is collapsed.
Click to expand it.
tools/export.py
0 → 100644
This diff is collapsed.
Click to expand it.
tools/serve.py
0 → 100644
This diff is collapsed.
Click to expand it.
tools/test.py
0 → 100644
This diff is collapsed.
Click to expand it.
tools/train.py
0 → 100644
This diff is collapsed.
Click to expand it.
version.txt
0 → 100644
This diff is collapsed.
Click to expand it.
-
Please register or sign in to post a comment