README.md
pyproject.toml
tests/test_det_infer.py
tests/test_det_train.py
tests/test_dummy_coco.py
trolo/__init__.py
trolo/infer.py
trolo/train.py
trolo/visualize.py
trolo.egg-info/PKG-INFO
trolo.egg-info/SOURCES.txt
trolo.egg-info/dependency_links.txt
trolo.egg-info/entry_points.txt
trolo.egg-info/requires.txt
trolo.egg-info/top_level.txt
trolo/cli/__init__.py
trolo/cli/cli.py
trolo/configs/yaml/runtime.yml
trolo/configs/yaml/dataset/coco_detection.yml
trolo/configs/yaml/dataset/crowdhuman_detection.yml
trolo/configs/yaml/dataset/custom_detection.yml
trolo/configs/yaml/dataset/dummy_coco.yml
trolo/configs/yaml/dataset/obj365_detection.yml
trolo/configs/yaml/dataset/voc_detection.yml
trolo/configs/yaml/dfine/dfine_hgnetv2_n_coco_half.yml
trolo/configs/yaml/dfine/dfine_l.yml
trolo/configs/yaml/dfine/dfine_m.yml
trolo/configs/yaml/dfine/dfine_n.yml
trolo/configs/yaml/dfine/dfine_n_coco_dummy.yml
trolo/configs/yaml/dfine/dfine_s.yml
trolo/configs/yaml/dfine/dfine_x.yml
trolo/configs/yaml/dfine/n_exp.yml
trolo/configs/yaml/dfine/crowdhuman/dfine_hgnetv2_l_ch.yml
trolo/configs/yaml/dfine/crowdhuman/dfine_hgnetv2_m_ch.yml
trolo/configs/yaml/dfine/crowdhuman/dfine_hgnetv2_n_ch.yml
trolo/configs/yaml/dfine/crowdhuman/dfine_hgnetv2_s_ch.yml
trolo/configs/yaml/dfine/crowdhuman/dfine_hgnetv2_x_ch.yml
trolo/configs/yaml/dfine/custom/dfine_hgnetv2_l_custom.yml
trolo/configs/yaml/dfine/custom/dfine_hgnetv2_m_custom.yml
trolo/configs/yaml/dfine/custom/dfine_hgnetv2_n_custom.yml
trolo/configs/yaml/dfine/custom/dfine_hgnetv2_s_custom.yml
trolo/configs/yaml/dfine/custom/dfine_hgnetv2_x_custom.yml
trolo/configs/yaml/dfine/custom/objects365/dfine_hgnetv2_l_obj2custom.yml
trolo/configs/yaml/dfine/custom/objects365/dfine_hgnetv2_m_obj2custom.yml
trolo/configs/yaml/dfine/custom/objects365/dfine_hgnetv2_s_obj2custom.yml
trolo/configs/yaml/dfine/custom/objects365/dfine_hgnetv2_x_obj2custom.yml
trolo/configs/yaml/dfine/include/back_exp.yml
trolo/configs/yaml/dfine/include/dataloader.yml
trolo/configs/yaml/dfine/include/dfine_hgnetv2.yml
trolo/configs/yaml/dfine/include/optimizer.yml
trolo/configs/yaml/dfine/objects365/dfine_hgnetv2_l_obj2coco.yml
trolo/configs/yaml/dfine/objects365/dfine_hgnetv2_l_obj365.yml
trolo/configs/yaml/dfine/objects365/dfine_hgnetv2_m_obj2coco.yml
trolo/configs/yaml/dfine/objects365/dfine_hgnetv2_m_obj365.yml
trolo/configs/yaml/dfine/objects365/dfine_hgnetv2_n_obj2coco.yml
trolo/configs/yaml/dfine/objects365/dfine_hgnetv2_n_obj365.yml
trolo/configs/yaml/dfine/objects365/dfine_hgnetv2_s_obj2coco.yml
trolo/configs/yaml/dfine/objects365/dfine_hgnetv2_s_obj365.yml
trolo/configs/yaml/dfine/objects365/dfine_hgnetv2_x_obj2coco.yml
trolo/configs/yaml/dfine/objects365/dfine_hgnetv2_x_obj365.yml
trolo/configs/yaml/rt-detrv2/rtdetrv2_s_coco.yml
trolo/data/__init__.py
trolo/data/_misc.py
trolo/data/dataloader.py
trolo/data/dataset/__init__.py
trolo/data/dataset/_dataset.py
trolo/data/dataset/cifar_dataset.py
trolo/data/dataset/coco_dataset.py
trolo/data/dataset/coco_eval.py
trolo/data/dataset/coco_utils.py
trolo/data/dataset/voc_detection.py
trolo/data/dataset/voc_eval.py
trolo/data/samples/street.jpg
trolo/data/transforms/__init__.py
trolo/data/transforms/_transforms.py
trolo/data/transforms/container.py
trolo/data/transforms/functional.py
trolo/data/transforms/mosaic.py
trolo/data/transforms/presets.py
trolo/eval/__init__.py
trolo/eval/detection.py
trolo/inference/__init__.py
trolo/inference/base.py
trolo/inference/detection.py
trolo/inference/video.py
trolo/loaders/__init__.py
trolo/loaders/_config.py
trolo/loaders/maps.py
trolo/loaders/registry.py
trolo/loaders/yaml_config.py
trolo/loaders/yaml_utils.py
trolo/models/__init__.py
trolo/models/dfine/__init__.py
trolo/models/dfine/box_ops.py
trolo/models/dfine/denoising.py
trolo/models/dfine/dfine.py
trolo/models/dfine/dfine_criterion.py
trolo/models/dfine/dfine_decoder.py
trolo/models/dfine/dfine_utils.py
trolo/models/dfine/hybrid_encoder.py
trolo/models/dfine/maps.py
trolo/models/dfine/matcher.py
trolo/models/dfine/postprocessor.py
trolo/models/dfine/utils.py
trolo/models/rtdetr/__init__.py
trolo/models/rtdetr/decoder.py
trolo/modules/__init__.py
trolo/modules/arch/__init__.py
trolo/modules/arch/classification.py
trolo/modules/arch/yolo.py
trolo/modules/backbone/__init__.py
trolo/modules/backbone/common.py
trolo/modules/backbone/csp_darknet.py
trolo/modules/backbone/csp_resnet.py
trolo/modules/backbone/hgnetv2.py
trolo/modules/backbone/presnet.py
trolo/modules/backbone/test_resnet.py
trolo/modules/backbone/timm_model.py
trolo/modules/backbone/torchvision_model.py
trolo/modules/backbone/utils.py
trolo/modules/criterion/__init__.py
trolo/modules/criterion/det_criterion.py
trolo/modules/optim/__init__.py
trolo/modules/optim/amp.py
trolo/modules/optim/ema.py
trolo/modules/optim/optim.py
trolo/modules/optim/warmup.py
trolo/modules/postprocessor/__init__.py
trolo/modules/postprocessor/box_revert.py
trolo/modules/postprocessor/detr_postprocessor.py
trolo/modules/postprocessor/nms_postprocessor.py
trolo/trainers/__init__.py
trolo/trainers/base.py
trolo/trainers/clas_engine.py
trolo/trainers/classification.py
trolo/trainers/det_engine.py
trolo/trainers/detection.py
trolo/utils/__init__.py
trolo/utils/assets.py
trolo/utils/box_ops.py
trolo/utils/dist_utils.py
trolo/utils/dummy_data.py
trolo/utils/logger.py
trolo/utils/profiler_utils.py
trolo/utils/smart_defaults.py
trolo/utils/logging/__init__.py
trolo/utils/logging/metrics_logger.py
trolo/utils/logging/wandb.py
trolo/utils/scripts/data_download/coco.sh
trolo/utils/scripts/data_download/dummy_coco.sh