├── .gitignore ├── .style.yapf ├── LICENSE ├── MANIFEST.in ├── README.rst ├── configs ├── _base_ │ ├── datasets │ │ ├── cityscapes_detection.py │ │ ├── cityscapes_instance.py │ │ ├── coco_detection.py │ │ ├── coco_instance.py │ │ ├── coco_instance_semantic.py │ │ ├── deepfashion.py │ │ ├── lvis_v0.5_instance.py │ │ ├── lvis_v1_instance.py │ │ ├── voc0712.py │ │ └── wider_face.py │ ├── default_runtime.py │ ├── models │ │ ├── cascade_mask_rcnn_r50_fpn.py │ │ ├── cascade_rcnn_r50_fpn.py │ │ ├── fast_rcnn_r50_fpn.py │ │ ├── faster_rcnn_r50_caffe_c4.py │ │ ├── faster_rcnn_r50_caffe_dc5.py │ │ ├── faster_rcnn_r50_fpn.py │ │ ├── mask_rcnn_r50_caffe_c4.py │ │ ├── mask_rcnn_r50_fpn.py │ │ ├── retinanet_r50_fpn.py │ │ ├── rpn_r50_caffe_c4.py │ │ ├── rpn_r50_fpn.py │ │ └── ssd300.py │ └── schedules │ │ ├── schedule_1x.py │ │ ├── schedule_20e.py │ │ └── schedule_2x.py ├── _dynamic_ │ ├── datasets │ │ ├── downstreams │ │ │ └── uni_bdd100k.py │ │ ├── uni_all.py │ │ ├── uni_coco.py │ │ └── uni_coco_obj365.py │ ├── model_samplers │ │ ├── ar50to101.py │ │ ├── ar50to101_flops.py │ │ └── extract_r50.py │ ├── models │ │ └── faster_rcnn_fpn_ar50to101_gsync.py │ ├── rules │ │ ├── 140GF_rules.py │ │ ├── ar50to101_ft1x_rules.py │ │ └── ar50to101_ft2e_rules.py │ └── schedules │ │ ├── schedule_all_42e.py │ │ ├── schedule_ft1x.py │ │ └── schedule_ft2e.py └── local_examples │ ├── count_flops │ └── faster_rcnn_ar50to101_flops.py │ ├── extract_subnet │ └── faster_rcnn_extract_r50.py │ ├── fast_finetune │ └── faster_rcnn_ar50to101_ft2e.py │ ├── test_supernet │ └── faster_rcnn_ar50to101_gsync_dist_eval.py │ └── train_supernet │ └── faster_rcnn_ar50to101_gsync.py ├── docs ├── DATA_PREPARATION.rst ├── MODEL_ZOO.rst └── USAGE.rst ├── gaiadet ├── __init__.py ├── apis │ ├── __init__.py │ ├── inference.py │ ├── test.py │ └── train.py ├── core │ ├── __init__.py │ └── evaluation │ │ ├── __init__.py │ │ ├── cross_arch_eval_hooks.py │ │ └── test_parallel.py ├── datasets │ ├── __init__.py │ ├── adjust_dataset.py │ ├── builder.py │ ├── dataset_wrappers.py │ └── named_custom.py ├── models │ ├── __init__.py │ ├── backbones │ │ ├── __init__.py │ │ ├── dynamic_csp_darknet.py │ │ └── dynamic_resnet.py │ ├── detectors │ │ ├── .ipynb_checkpoints │ │ │ └── dynamic_two_stage-checkpoint.py │ │ ├── __init__.py │ │ ├── dynamic_faster_rcnn.py │ │ ├── dynamic_single_stage.py │ │ ├── dynamic_two_stage.py │ │ └── dynamic_yolox.py │ ├── necks │ │ ├── __init__.py │ │ └── dynamic_fpn.py │ └── utils │ │ ├── __init__.py │ │ └── dynamic_res_layer.py └── version.py ├── hubs ├── labels │ ├── downstreams │ │ └── bdd100k.csv │ ├── uni.0.0.3.csv │ ├── uni.0.0.4.csv │ └── upstreams │ │ ├── coco.csv │ │ ├── object365.csv │ │ ├── oid600.csv │ │ └── openimages.csv └── metric_examples │ └── coco │ ├── ft2e │ ├── 115GF.json │ ├── 140GF.json │ ├── 50GF.json │ ├── 75GF.json │ └── 90GF.json │ └── test │ ├── 115GF.json │ ├── 140GF.json │ ├── 50GF.json │ ├── 75GF.json │ └── 90GF.json ├── requirements.txt ├── scripts ├── count_flops_local.sh ├── extract_subnet.sh ├── finetune_local.sh ├── test_local.sh └── train_local.sh ├── setup.cfg ├── setup.py └── tools ├── convert_datasets ├── coco2custom.py └── oid2custom.py ├── count_flops.py ├── extract_subnet.py ├── finetune_supernet.py ├── test_supernet.py └── train_supernet.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/.gitignore -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/README.rst -------------------------------------------------------------------------------- /configs/_base_/datasets/cityscapes_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/datasets/cityscapes_detection.py -------------------------------------------------------------------------------- /configs/_base_/datasets/cityscapes_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/datasets/cityscapes_instance.py -------------------------------------------------------------------------------- /configs/_base_/datasets/coco_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/datasets/coco_detection.py -------------------------------------------------------------------------------- /configs/_base_/datasets/coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/datasets/coco_instance.py -------------------------------------------------------------------------------- /configs/_base_/datasets/coco_instance_semantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/datasets/coco_instance_semantic.py -------------------------------------------------------------------------------- /configs/_base_/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/datasets/deepfashion.py -------------------------------------------------------------------------------- /configs/_base_/datasets/lvis_v0.5_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/datasets/lvis_v0.5_instance.py -------------------------------------------------------------------------------- /configs/_base_/datasets/lvis_v1_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/datasets/lvis_v1_instance.py -------------------------------------------------------------------------------- /configs/_base_/datasets/voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/datasets/voc0712.py -------------------------------------------------------------------------------- /configs/_base_/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/datasets/wider_face.py -------------------------------------------------------------------------------- /configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /configs/_base_/models/cascade_mask_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/models/cascade_mask_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/cascade_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/models/cascade_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/fast_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/models/fast_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/faster_rcnn_r50_caffe_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/models/faster_rcnn_r50_caffe_c4.py -------------------------------------------------------------------------------- /configs/_base_/models/faster_rcnn_r50_caffe_dc5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/models/faster_rcnn_r50_caffe_dc5.py -------------------------------------------------------------------------------- /configs/_base_/models/faster_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/models/faster_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/mask_rcnn_r50_caffe_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/models/mask_rcnn_r50_caffe_c4.py -------------------------------------------------------------------------------- /configs/_base_/models/mask_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/models/mask_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/retinanet_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/models/retinanet_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/rpn_r50_caffe_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/models/rpn_r50_caffe_c4.py -------------------------------------------------------------------------------- /configs/_base_/models/rpn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/models/rpn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/models/ssd300.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/schedules/schedule_1x.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/schedules/schedule_20e.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_base_/schedules/schedule_2x.py -------------------------------------------------------------------------------- /configs/_dynamic_/datasets/downstreams/uni_bdd100k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_dynamic_/datasets/downstreams/uni_bdd100k.py -------------------------------------------------------------------------------- /configs/_dynamic_/datasets/uni_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_dynamic_/datasets/uni_all.py -------------------------------------------------------------------------------- /configs/_dynamic_/datasets/uni_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_dynamic_/datasets/uni_coco.py -------------------------------------------------------------------------------- /configs/_dynamic_/datasets/uni_coco_obj365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_dynamic_/datasets/uni_coco_obj365.py -------------------------------------------------------------------------------- /configs/_dynamic_/model_samplers/ar50to101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_dynamic_/model_samplers/ar50to101.py -------------------------------------------------------------------------------- /configs/_dynamic_/model_samplers/ar50to101_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_dynamic_/model_samplers/ar50to101_flops.py -------------------------------------------------------------------------------- /configs/_dynamic_/model_samplers/extract_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_dynamic_/model_samplers/extract_r50.py -------------------------------------------------------------------------------- /configs/_dynamic_/models/faster_rcnn_fpn_ar50to101_gsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_dynamic_/models/faster_rcnn_fpn_ar50to101_gsync.py -------------------------------------------------------------------------------- /configs/_dynamic_/rules/140GF_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_dynamic_/rules/140GF_rules.py -------------------------------------------------------------------------------- /configs/_dynamic_/rules/ar50to101_ft1x_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_dynamic_/rules/ar50to101_ft1x_rules.py -------------------------------------------------------------------------------- /configs/_dynamic_/rules/ar50to101_ft2e_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_dynamic_/rules/ar50to101_ft2e_rules.py -------------------------------------------------------------------------------- /configs/_dynamic_/schedules/schedule_all_42e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_dynamic_/schedules/schedule_all_42e.py -------------------------------------------------------------------------------- /configs/_dynamic_/schedules/schedule_ft1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_dynamic_/schedules/schedule_ft1x.py -------------------------------------------------------------------------------- /configs/_dynamic_/schedules/schedule_ft2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/_dynamic_/schedules/schedule_ft2e.py -------------------------------------------------------------------------------- /configs/local_examples/count_flops/faster_rcnn_ar50to101_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/local_examples/count_flops/faster_rcnn_ar50to101_flops.py -------------------------------------------------------------------------------- /configs/local_examples/extract_subnet/faster_rcnn_extract_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/local_examples/extract_subnet/faster_rcnn_extract_r50.py -------------------------------------------------------------------------------- /configs/local_examples/fast_finetune/faster_rcnn_ar50to101_ft2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/local_examples/fast_finetune/faster_rcnn_ar50to101_ft2e.py -------------------------------------------------------------------------------- /configs/local_examples/test_supernet/faster_rcnn_ar50to101_gsync_dist_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/local_examples/test_supernet/faster_rcnn_ar50to101_gsync_dist_eval.py -------------------------------------------------------------------------------- /configs/local_examples/train_supernet/faster_rcnn_ar50to101_gsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/configs/local_examples/train_supernet/faster_rcnn_ar50to101_gsync.py -------------------------------------------------------------------------------- /docs/DATA_PREPARATION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/docs/DATA_PREPARATION.rst -------------------------------------------------------------------------------- /docs/MODEL_ZOO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/docs/MODEL_ZOO.rst -------------------------------------------------------------------------------- /docs/USAGE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/docs/USAGE.rst -------------------------------------------------------------------------------- /gaiadet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/__init__.py -------------------------------------------------------------------------------- /gaiadet/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/apis/__init__.py -------------------------------------------------------------------------------- /gaiadet/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/apis/inference.py -------------------------------------------------------------------------------- /gaiadet/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/apis/test.py -------------------------------------------------------------------------------- /gaiadet/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/apis/train.py -------------------------------------------------------------------------------- /gaiadet/core/__init__.py: -------------------------------------------------------------------------------- 1 | from .evaluation import * 2 | -------------------------------------------------------------------------------- /gaiadet/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/core/evaluation/__init__.py -------------------------------------------------------------------------------- /gaiadet/core/evaluation/cross_arch_eval_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/core/evaluation/cross_arch_eval_hooks.py -------------------------------------------------------------------------------- /gaiadet/core/evaluation/test_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/core/evaluation/test_parallel.py -------------------------------------------------------------------------------- /gaiadet/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/datasets/__init__.py -------------------------------------------------------------------------------- /gaiadet/datasets/adjust_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/datasets/adjust_dataset.py -------------------------------------------------------------------------------- /gaiadet/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/datasets/builder.py -------------------------------------------------------------------------------- /gaiadet/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /gaiadet/datasets/named_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/datasets/named_custom.py -------------------------------------------------------------------------------- /gaiadet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/models/__init__.py -------------------------------------------------------------------------------- /gaiadet/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/models/backbones/__init__.py -------------------------------------------------------------------------------- /gaiadet/models/backbones/dynamic_csp_darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/models/backbones/dynamic_csp_darknet.py -------------------------------------------------------------------------------- /gaiadet/models/backbones/dynamic_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/models/backbones/dynamic_resnet.py -------------------------------------------------------------------------------- /gaiadet/models/detectors/.ipynb_checkpoints/dynamic_two_stage-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/models/detectors/.ipynb_checkpoints/dynamic_two_stage-checkpoint.py -------------------------------------------------------------------------------- /gaiadet/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/models/detectors/__init__.py -------------------------------------------------------------------------------- /gaiadet/models/detectors/dynamic_faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/models/detectors/dynamic_faster_rcnn.py -------------------------------------------------------------------------------- /gaiadet/models/detectors/dynamic_single_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/models/detectors/dynamic_single_stage.py -------------------------------------------------------------------------------- /gaiadet/models/detectors/dynamic_two_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/models/detectors/dynamic_two_stage.py -------------------------------------------------------------------------------- /gaiadet/models/detectors/dynamic_yolox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/models/detectors/dynamic_yolox.py -------------------------------------------------------------------------------- /gaiadet/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/models/necks/__init__.py -------------------------------------------------------------------------------- /gaiadet/models/necks/dynamic_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/models/necks/dynamic_fpn.py -------------------------------------------------------------------------------- /gaiadet/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/models/utils/__init__.py -------------------------------------------------------------------------------- /gaiadet/models/utils/dynamic_res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/models/utils/dynamic_res_layer.py -------------------------------------------------------------------------------- /gaiadet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/gaiadet/version.py -------------------------------------------------------------------------------- /hubs/labels/downstreams/bdd100k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/labels/downstreams/bdd100k.csv -------------------------------------------------------------------------------- /hubs/labels/uni.0.0.3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/labels/uni.0.0.3.csv -------------------------------------------------------------------------------- /hubs/labels/uni.0.0.4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/labels/uni.0.0.4.csv -------------------------------------------------------------------------------- /hubs/labels/upstreams/coco.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/labels/upstreams/coco.csv -------------------------------------------------------------------------------- /hubs/labels/upstreams/object365.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/labels/upstreams/object365.csv -------------------------------------------------------------------------------- /hubs/labels/upstreams/oid600.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/labels/upstreams/oid600.csv -------------------------------------------------------------------------------- /hubs/labels/upstreams/openimages.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/labels/upstreams/openimages.csv -------------------------------------------------------------------------------- /hubs/metric_examples/coco/ft2e/115GF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/metric_examples/coco/ft2e/115GF.json -------------------------------------------------------------------------------- /hubs/metric_examples/coco/ft2e/140GF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/metric_examples/coco/ft2e/140GF.json -------------------------------------------------------------------------------- /hubs/metric_examples/coco/ft2e/50GF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/metric_examples/coco/ft2e/50GF.json -------------------------------------------------------------------------------- /hubs/metric_examples/coco/ft2e/75GF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/metric_examples/coco/ft2e/75GF.json -------------------------------------------------------------------------------- /hubs/metric_examples/coco/ft2e/90GF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/metric_examples/coco/ft2e/90GF.json -------------------------------------------------------------------------------- /hubs/metric_examples/coco/test/115GF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/metric_examples/coco/test/115GF.json -------------------------------------------------------------------------------- /hubs/metric_examples/coco/test/140GF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/metric_examples/coco/test/140GF.json -------------------------------------------------------------------------------- /hubs/metric_examples/coco/test/50GF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/metric_examples/coco/test/50GF.json -------------------------------------------------------------------------------- /hubs/metric_examples/coco/test/75GF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/metric_examples/coco/test/75GF.json -------------------------------------------------------------------------------- /hubs/metric_examples/coco/test/90GF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/hubs/metric_examples/coco/test/90GF.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | terminaltables 2 | mmpycocotools 3 | spacy 4 | 5 | -------------------------------------------------------------------------------- /scripts/count_flops_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/scripts/count_flops_local.sh -------------------------------------------------------------------------------- /scripts/extract_subnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/scripts/extract_subnet.sh -------------------------------------------------------------------------------- /scripts/finetune_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/scripts/finetune_local.sh -------------------------------------------------------------------------------- /scripts/test_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/scripts/test_local.sh -------------------------------------------------------------------------------- /scripts/train_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/scripts/train_local.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/setup.py -------------------------------------------------------------------------------- /tools/convert_datasets/coco2custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/tools/convert_datasets/coco2custom.py -------------------------------------------------------------------------------- /tools/convert_datasets/oid2custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/tools/convert_datasets/oid2custom.py -------------------------------------------------------------------------------- /tools/count_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/tools/count_flops.py -------------------------------------------------------------------------------- /tools/extract_subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/tools/extract_subnet.py -------------------------------------------------------------------------------- /tools/finetune_supernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/tools/finetune_supernet.py -------------------------------------------------------------------------------- /tools/test_supernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/tools/test_supernet.py -------------------------------------------------------------------------------- /tools/train_supernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAIA-vision/GAIA-det/HEAD/tools/train_supernet.py --------------------------------------------------------------------------------