├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── basictad.png ├── configs └── trainval │ └── basictad │ └── thumos14 │ ├── basictad_slowonly_e700_thumos14_rgb_192win_anchor_based.py │ ├── basictad_slowonly_e700_thumos14_rgb_192win_anchor_free.py │ ├── basictad_slowonly_e700_thumos14_rgb_96win_anchor_based.py │ └── basictad_slowonly_e700_thumos14_rgb_96win_anchor_free.py ├── data └── thumos14 │ ├── annotations │ ├── detclasslist.txt │ ├── test.json │ ├── test │ │ ├── Ambiguous_test.txt │ │ ├── BaseballPitch_test.txt │ │ ├── BasketballDunk_test.txt │ │ ├── Billiards_test.txt │ │ ├── CleanAndJerk_test.txt │ │ ├── CliffDiving_test.txt │ │ ├── CricketBowling_test.txt │ │ ├── CricketShot_test.txt │ │ ├── Diving_test.txt │ │ ├── FrisbeeCatch_test.txt │ │ ├── GolfSwing_test.txt │ │ ├── HammerThrow_test.txt │ │ ├── HighJump_test.txt │ │ ├── JavelinThrow_test.txt │ │ ├── LongJump_test.txt │ │ ├── PoleVault_test.txt │ │ ├── Shotput_test.txt │ │ ├── SoccerPenalty_test.txt │ │ ├── TennisSwing_test.txt │ │ ├── ThrowDiscus_test.txt │ │ ├── VolleyballSpiking_test.txt │ │ └── segment.txt │ ├── val.json │ └── val │ │ ├── Ambiguous_val.txt │ │ ├── BaseballPitch_val.txt │ │ ├── BasketballDunk_val.txt │ │ ├── Billiards_val.txt │ │ ├── CleanAndJerk_val.txt │ │ ├── CliffDiving_val.txt │ │ ├── CricketBowling_val.txt │ │ ├── CricketShot_val.txt │ │ ├── Diving_val.txt │ │ ├── FrisbeeCatch_val.txt │ │ ├── GolfSwing_val.txt │ │ ├── HammerThrow_val.txt │ │ ├── HighJump_val.txt │ │ ├── JavelinThrow_val.txt │ │ ├── LongJump_val.txt │ │ ├── PoleVault_val.txt │ │ ├── Shotput_val.txt │ │ ├── SoccerPenalty_val.txt │ │ ├── TennisSwing_val.txt │ │ ├── ThrowDiscus_val.txt │ │ ├── VolleyballSpiking_val.txt │ │ └── segment.txt │ ├── download.sh │ └── extract_frames.sh ├── requirements ├── build.txt ├── optional.txt └── runtime.txt ├── setup.cfg ├── setup.py ├── tools ├── Eval_Thumos14 │ ├── __init__.py │ ├── annotation_test │ │ ├── Ambiguous_test.txt │ │ ├── BaseballPitch_test.txt │ │ ├── BasketballDunk_test.txt │ │ ├── Billiards_test.txt │ │ ├── CleanAndJerk_test.txt │ │ ├── CliffDiving_test.txt │ │ ├── CricketBowling_test.txt │ │ ├── CricketShot_test.txt │ │ ├── Diving_test.txt │ │ ├── FrisbeeCatch_test.txt │ │ ├── GolfSwing_test.txt │ │ ├── HammerThrow_test.txt │ │ ├── HighJump_test.txt │ │ ├── JavelinThrow_test.txt │ │ ├── LongJump_test.txt │ │ ├── PoleVault_test.txt │ │ ├── Shotput_test.txt │ │ ├── SoccerPenalty_test.txt │ │ ├── TennisSwing_test.txt │ │ ├── ThrowDiscus_test.txt │ │ ├── VolleyballSpiking_test.txt │ │ └── detclasslist.txt │ ├── annotation_val │ │ ├── Ambiguous_val.txt │ │ ├── BaseballPitch_val.txt │ │ ├── BasketballDunk_val.txt │ │ ├── Billiards_val.txt │ │ ├── CleanAndJerk_val.txt │ │ ├── CliffDiving_val.txt │ │ ├── CricketBowling_val.txt │ │ ├── CricketShot_val.txt │ │ ├── Diving_val.txt │ │ ├── FrisbeeCatch_val.txt │ │ ├── GolfSwing_val.txt │ │ ├── HammerThrow_val.txt │ │ ├── HighJump_val.txt │ │ ├── JavelinThrow_val.txt │ │ ├── LongJump_val.txt │ │ ├── PoleVault_val.txt │ │ ├── Shotput_val.txt │ │ ├── SoccerPenalty_val.txt │ │ ├── TennisSwing_val.txt │ │ ├── ThrowDiscus_val.txt │ │ ├── VolleyballSpiking_val.txt │ │ └── detclasslist.txt │ ├── eval_action_detection.py │ ├── eval_detection.py │ ├── eval_proposal.py │ ├── test_Annotation.csv │ ├── thumos14_test_groundtruth.csv │ ├── thumos_gt.json │ ├── utils_eval.py │ └── val_Annotation.csv ├── dist_trainval.sh ├── thumos │ ├── test_ab.py │ ├── test_af.py │ ├── train_and_test_thumos_anchor_based_3fps.sh │ ├── train_and_test_thumos_anchor_based_6fps.sh │ ├── train_and_test_thumos_anchor_free_3fps.sh │ └── train_and_test_thumos_anchor_free_6fps.sh └── trainval.py ├── vedacore ├── __init__.py ├── fileio │ ├── __init__.py │ ├── file_client.py │ ├── handlers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── json_handler.py │ │ ├── pickle_handler.py │ │ └── yaml_handler.py │ ├── io.py │ └── parse.py ├── hooks │ ├── __init__.py │ ├── base_hook.py │ ├── builder.py │ ├── eval.py │ ├── hook_pool.py │ ├── logger.py │ ├── lr_scheduler.py │ ├── optimizer.py │ ├── sampler_seed.py │ ├── snapshot.py │ └── worker_init.py ├── image │ ├── __init__.py │ ├── colorspace.py │ ├── geometric.py │ ├── io.py │ └── photometric.py ├── loopers │ ├── __init__.py │ ├── base_looper.py │ └── epoch_based_looper.py ├── misc │ ├── __init__.py │ ├── checkpoint.py │ ├── color.py │ ├── config.py │ ├── decorator.py │ ├── logging.py │ ├── progressbar.py │ ├── registry.py │ ├── timer.py │ └── utils.py ├── model_zoo │ └── open_mmlab.yaml ├── modules │ ├── __init__.py │ ├── bricks │ │ ├── __init__.py │ │ ├── activation.py │ │ ├── conv.py │ │ ├── conv_module.py │ │ ├── enhance_module.py │ │ ├── hsigmoid.py │ │ ├── hswish.py │ │ ├── non_local.py │ │ ├── norm.py │ │ ├── padding.py │ │ ├── plugin.py │ │ ├── scale.py │ │ └── upsample.py │ └── utils │ │ ├── __init__.py │ │ ├── flops_counter.py │ │ └── weight_init.py ├── ops │ ├── __init__.py │ ├── dcn │ │ ├── __init__.py │ │ ├── deform_conv.py │ │ ├── deform_pool.py │ │ └── src │ │ │ ├── cuda │ │ │ ├── deform_conv_cuda.cpp │ │ │ ├── deform_conv_cuda_kernel.cu │ │ │ ├── deform_pool_cuda.cpp │ │ │ └── deform_pool_cuda_kernel.cu │ │ │ ├── deform_conv_ext.cpp │ │ │ └── deform_pool_ext.cpp │ ├── nms │ │ ├── __init__.py │ │ ├── nms_wrapper.py │ │ └── src │ │ │ ├── cpu │ │ │ └── nms_cpu.cpp │ │ │ ├── cuda │ │ │ ├── nms_cuda.cpp │ │ │ └── nms_kernel.cu │ │ │ └── nms_ext.cpp │ └── sigmoid_focal_loss │ │ ├── __init__.py │ │ ├── sigmoid_focal_loss.py │ │ └── src │ │ ├── cuda │ │ └── sigmoid_focal_loss_cuda.cu │ │ └── sigmoid_focal_loss_ext.cpp ├── optimizers │ ├── __init__.py │ ├── builder.py │ └── default_constructor.py └── parallel │ ├── __init__.py │ ├── _functions.py │ ├── collate.py │ ├── data_container.py │ ├── data_parallel.py │ ├── dist_utils.py │ ├── distributed.py │ ├── scatter_gather.py │ └── utils.py └── vedatad ├── __init__.py ├── assembler ├── __init__.py └── trainval.py ├── bridge ├── __init__.py ├── converters │ ├── __init__.py │ ├── base_converter.py │ ├── builder.py │ ├── fcos_converter.py │ ├── point_anchor_converter.py │ └── segment_anchor_converter.py └── meshgrids │ ├── __init__.py │ ├── base_anchors │ ├── __init__.py │ ├── builder.py │ └── segment.py │ ├── base_meshgrid.py │ ├── builder.py │ ├── point_anchor_meshgrid.py │ └── segment_anchor_meshgrid.py ├── criteria ├── __init__.py ├── base_criterion.py ├── builder.py ├── fcos_criterion.py ├── fcos_criterion_batches_diou.py ├── losses │ ├── __init__.py │ ├── builder.py │ ├── cross_entropy_loss.py │ ├── focal_loss.py │ ├── iou_loss.py │ ├── smooth_l1_loss.py │ └── utils.py └── segment_anchor_criterion.py ├── datasets ├── __init__.py ├── builder.py ├── custom.py ├── dataset_wrappers.py ├── pipelines │ ├── __init__.py │ ├── auto_augment.py │ ├── compose.py │ ├── formating.py │ ├── loading.py │ ├── test_time_aug.py │ ├── test_time_aug_twodirections.py │ └── transforms.py ├── samplers │ ├── __init__.py │ ├── distributed_sampler.py │ └── group_sampler.py ├── thumos14.py └── thumos14_additional_background.py ├── engines ├── __init__.py ├── base_engine.py ├── builder.py ├── infer_engine.py ├── infer_engine_AF.py ├── train_engine.py ├── train_engine_AF.py ├── val_engine.py └── val_engine_AF.py ├── misc ├── __init__.py ├── anchor.py ├── evaluation │ ├── __init__.py │ └── mean_ap.py ├── logger.py └── segment │ ├── __init__.py │ ├── assigners │ ├── __init__.py │ ├── assign_result.py │ ├── base_assigner.py │ └── max_iou_assigner.py │ ├── builder.py │ ├── coders │ ├── __init__.py │ ├── base_segment_coder.py │ ├── delta_segment_coder.py │ └── pseudo_segment_coder.py │ ├── demodata.py │ ├── iou_calculators │ ├── __init__.py │ ├── builder.py │ └── iou_calculator.py │ ├── samplers │ ├── __init__.py │ ├── base_sampler.py │ ├── combined_sampler.py │ ├── instance_balanced_pos_sampler.py │ ├── iou_balanced_neg_sampler.py │ ├── pseudo_sampler.py │ ├── random_sampler.py │ └── sampling_result.py │ ├── segment.py │ └── util_mixins.py └── models ├── __init__.py ├── backbones ├── __init__.py ├── resnet3d.py └── slowonly.py ├── builder.py ├── detectors ├── __init__.py ├── base_detector.py └── single_stage_detector.py ├── heads ├── __init__.py ├── anchor_head.py ├── base_dense_head.py ├── fcos_head.py ├── fcos_head_sigmoid.py └── retina_head.py ├── necks ├── AF_tdm.py ├── __init__.py ├── fpn.py ├── srm.py ├── tdm.py └── vdm.py ├── ops ├── roi_align │ ├── __init__.py │ ├── roi_align.py │ └── src │ │ ├── roi_align_cuda.cpp │ │ └── roi_align_kernel.cu ├── setup.py └── temporal_deform_attn │ ├── __init__.py │ ├── functions │ ├── __init__.py │ └── temporal_deform_attn_func.py │ ├── src │ ├── cpu │ │ ├── temporal_deform_attn_cpu.cpp │ │ └── temporal_deform_attn_cpu.h │ ├── cuda │ │ ├── temporal_deform_attn_cuda.cu │ │ ├── temporal_deform_attn_cuda.h │ │ └── temporal_deform_seq2col_cuda.cuh │ ├── temporal_deform_attn.h │ └── vision.cpp │ └── temporal_deform_attn.py └── utils ├── __init__.py ├── box_ops.py ├── misc.py └── res_layer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/README.md -------------------------------------------------------------------------------- /basictad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/basictad.png -------------------------------------------------------------------------------- /configs/trainval/basictad/thumos14/basictad_slowonly_e700_thumos14_rgb_192win_anchor_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/configs/trainval/basictad/thumos14/basictad_slowonly_e700_thumos14_rgb_192win_anchor_based.py -------------------------------------------------------------------------------- /configs/trainval/basictad/thumos14/basictad_slowonly_e700_thumos14_rgb_192win_anchor_free.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/configs/trainval/basictad/thumos14/basictad_slowonly_e700_thumos14_rgb_192win_anchor_free.py -------------------------------------------------------------------------------- /configs/trainval/basictad/thumos14/basictad_slowonly_e700_thumos14_rgb_96win_anchor_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/configs/trainval/basictad/thumos14/basictad_slowonly_e700_thumos14_rgb_96win_anchor_based.py -------------------------------------------------------------------------------- /configs/trainval/basictad/thumos14/basictad_slowonly_e700_thumos14_rgb_96win_anchor_free.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/configs/trainval/basictad/thumos14/basictad_slowonly_e700_thumos14_rgb_96win_anchor_free.py -------------------------------------------------------------------------------- /data/thumos14/annotations/detclasslist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/detclasslist.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test.json -------------------------------------------------------------------------------- /data/thumos14/annotations/test/Ambiguous_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/Ambiguous_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/BaseballPitch_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/BaseballPitch_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/BasketballDunk_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/BasketballDunk_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/Billiards_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/Billiards_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/CleanAndJerk_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/CleanAndJerk_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/CliffDiving_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/CliffDiving_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/CricketBowling_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/CricketBowling_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/CricketShot_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/CricketShot_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/Diving_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/Diving_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/FrisbeeCatch_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/FrisbeeCatch_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/GolfSwing_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/GolfSwing_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/HammerThrow_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/HammerThrow_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/HighJump_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/HighJump_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/JavelinThrow_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/JavelinThrow_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/LongJump_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/LongJump_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/PoleVault_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/PoleVault_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/Shotput_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/Shotput_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/SoccerPenalty_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/SoccerPenalty_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/TennisSwing_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/TennisSwing_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/ThrowDiscus_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/ThrowDiscus_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/VolleyballSpiking_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/VolleyballSpiking_test.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/test/segment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/test/segment.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val.json -------------------------------------------------------------------------------- /data/thumos14/annotations/val/Ambiguous_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/Ambiguous_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/BaseballPitch_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/BaseballPitch_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/BasketballDunk_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/BasketballDunk_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/Billiards_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/Billiards_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/CleanAndJerk_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/CleanAndJerk_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/CliffDiving_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/CliffDiving_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/CricketBowling_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/CricketBowling_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/CricketShot_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/CricketShot_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/Diving_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/Diving_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/FrisbeeCatch_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/FrisbeeCatch_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/GolfSwing_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/GolfSwing_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/HammerThrow_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/HammerThrow_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/HighJump_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/HighJump_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/JavelinThrow_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/JavelinThrow_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/LongJump_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/LongJump_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/PoleVault_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/PoleVault_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/Shotput_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/Shotput_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/SoccerPenalty_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/SoccerPenalty_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/TennisSwing_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/TennisSwing_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/ThrowDiscus_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/ThrowDiscus_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/VolleyballSpiking_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/VolleyballSpiking_val.txt -------------------------------------------------------------------------------- /data/thumos14/annotations/val/segment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/annotations/val/segment.txt -------------------------------------------------------------------------------- /data/thumos14/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/download.sh -------------------------------------------------------------------------------- /data/thumos14/extract_frames.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/data/thumos14/extract_frames.sh -------------------------------------------------------------------------------- /requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/requirements/build.txt -------------------------------------------------------------------------------- /requirements/optional.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/requirements/runtime.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/setup.py -------------------------------------------------------------------------------- /tools/Eval_Thumos14/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/Ambiguous_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/Ambiguous_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/BaseballPitch_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/BaseballPitch_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/BasketballDunk_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/BasketballDunk_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/Billiards_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/Billiards_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/CleanAndJerk_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/CleanAndJerk_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/CliffDiving_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/CliffDiving_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/CricketBowling_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/CricketBowling_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/CricketShot_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/CricketShot_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/Diving_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/Diving_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/FrisbeeCatch_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/FrisbeeCatch_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/GolfSwing_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/GolfSwing_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/HammerThrow_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/HammerThrow_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/HighJump_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/HighJump_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/JavelinThrow_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/JavelinThrow_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/LongJump_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/LongJump_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/PoleVault_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/PoleVault_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/Shotput_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/Shotput_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/SoccerPenalty_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/SoccerPenalty_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/TennisSwing_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/TennisSwing_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/ThrowDiscus_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/ThrowDiscus_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/VolleyballSpiking_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/VolleyballSpiking_test.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_test/detclasslist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_test/detclasslist.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/Ambiguous_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/Ambiguous_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/BaseballPitch_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/BaseballPitch_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/BasketballDunk_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/BasketballDunk_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/Billiards_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/Billiards_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/CleanAndJerk_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/CleanAndJerk_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/CliffDiving_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/CliffDiving_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/CricketBowling_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/CricketBowling_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/CricketShot_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/CricketShot_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/Diving_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/Diving_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/FrisbeeCatch_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/FrisbeeCatch_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/GolfSwing_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/GolfSwing_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/HammerThrow_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/HammerThrow_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/HighJump_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/HighJump_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/JavelinThrow_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/JavelinThrow_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/LongJump_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/LongJump_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/PoleVault_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/PoleVault_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/Shotput_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/Shotput_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/SoccerPenalty_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/SoccerPenalty_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/TennisSwing_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/TennisSwing_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/ThrowDiscus_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/ThrowDiscus_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/VolleyballSpiking_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/VolleyballSpiking_val.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/annotation_val/detclasslist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/annotation_val/detclasslist.txt -------------------------------------------------------------------------------- /tools/Eval_Thumos14/eval_action_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/eval_action_detection.py -------------------------------------------------------------------------------- /tools/Eval_Thumos14/eval_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/eval_detection.py -------------------------------------------------------------------------------- /tools/Eval_Thumos14/eval_proposal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/eval_proposal.py -------------------------------------------------------------------------------- /tools/Eval_Thumos14/test_Annotation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/test_Annotation.csv -------------------------------------------------------------------------------- /tools/Eval_Thumos14/thumos14_test_groundtruth.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/thumos14_test_groundtruth.csv -------------------------------------------------------------------------------- /tools/Eval_Thumos14/thumos_gt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/thumos_gt.json -------------------------------------------------------------------------------- /tools/Eval_Thumos14/utils_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/utils_eval.py -------------------------------------------------------------------------------- /tools/Eval_Thumos14/val_Annotation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/Eval_Thumos14/val_Annotation.csv -------------------------------------------------------------------------------- /tools/dist_trainval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/dist_trainval.sh -------------------------------------------------------------------------------- /tools/thumos/test_ab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/thumos/test_ab.py -------------------------------------------------------------------------------- /tools/thumos/test_af.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/thumos/test_af.py -------------------------------------------------------------------------------- /tools/thumos/train_and_test_thumos_anchor_based_3fps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/thumos/train_and_test_thumos_anchor_based_3fps.sh -------------------------------------------------------------------------------- /tools/thumos/train_and_test_thumos_anchor_based_6fps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/thumos/train_and_test_thumos_anchor_based_6fps.sh -------------------------------------------------------------------------------- /tools/thumos/train_and_test_thumos_anchor_free_3fps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/thumos/train_and_test_thumos_anchor_free_3fps.sh -------------------------------------------------------------------------------- /tools/thumos/train_and_test_thumos_anchor_free_6fps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/thumos/train_and_test_thumos_anchor_free_6fps.sh -------------------------------------------------------------------------------- /tools/trainval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/tools/trainval.py -------------------------------------------------------------------------------- /vedacore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vedacore/fileio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/fileio/__init__.py -------------------------------------------------------------------------------- /vedacore/fileio/file_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/fileio/file_client.py -------------------------------------------------------------------------------- /vedacore/fileio/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/fileio/handlers/__init__.py -------------------------------------------------------------------------------- /vedacore/fileio/handlers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/fileio/handlers/base.py -------------------------------------------------------------------------------- /vedacore/fileio/handlers/json_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/fileio/handlers/json_handler.py -------------------------------------------------------------------------------- /vedacore/fileio/handlers/pickle_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/fileio/handlers/pickle_handler.py -------------------------------------------------------------------------------- /vedacore/fileio/handlers/yaml_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/fileio/handlers/yaml_handler.py -------------------------------------------------------------------------------- /vedacore/fileio/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/fileio/io.py -------------------------------------------------------------------------------- /vedacore/fileio/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/fileio/parse.py -------------------------------------------------------------------------------- /vedacore/hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/hooks/__init__.py -------------------------------------------------------------------------------- /vedacore/hooks/base_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/hooks/base_hook.py -------------------------------------------------------------------------------- /vedacore/hooks/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/hooks/builder.py -------------------------------------------------------------------------------- /vedacore/hooks/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/hooks/eval.py -------------------------------------------------------------------------------- /vedacore/hooks/hook_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/hooks/hook_pool.py -------------------------------------------------------------------------------- /vedacore/hooks/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/hooks/logger.py -------------------------------------------------------------------------------- /vedacore/hooks/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/hooks/lr_scheduler.py -------------------------------------------------------------------------------- /vedacore/hooks/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/hooks/optimizer.py -------------------------------------------------------------------------------- /vedacore/hooks/sampler_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/hooks/sampler_seed.py -------------------------------------------------------------------------------- /vedacore/hooks/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/hooks/snapshot.py -------------------------------------------------------------------------------- /vedacore/hooks/worker_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/hooks/worker_init.py -------------------------------------------------------------------------------- /vedacore/image/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/image/__init__.py -------------------------------------------------------------------------------- /vedacore/image/colorspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/image/colorspace.py -------------------------------------------------------------------------------- /vedacore/image/geometric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/image/geometric.py -------------------------------------------------------------------------------- /vedacore/image/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/image/io.py -------------------------------------------------------------------------------- /vedacore/image/photometric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/image/photometric.py -------------------------------------------------------------------------------- /vedacore/loopers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/loopers/__init__.py -------------------------------------------------------------------------------- /vedacore/loopers/base_looper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/loopers/base_looper.py -------------------------------------------------------------------------------- /vedacore/loopers/epoch_based_looper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/loopers/epoch_based_looper.py -------------------------------------------------------------------------------- /vedacore/misc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/misc/__init__.py -------------------------------------------------------------------------------- /vedacore/misc/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/misc/checkpoint.py -------------------------------------------------------------------------------- /vedacore/misc/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/misc/color.py -------------------------------------------------------------------------------- /vedacore/misc/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/misc/config.py -------------------------------------------------------------------------------- /vedacore/misc/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/misc/decorator.py -------------------------------------------------------------------------------- /vedacore/misc/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/misc/logging.py -------------------------------------------------------------------------------- /vedacore/misc/progressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/misc/progressbar.py -------------------------------------------------------------------------------- /vedacore/misc/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/misc/registry.py -------------------------------------------------------------------------------- /vedacore/misc/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/misc/timer.py -------------------------------------------------------------------------------- /vedacore/misc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/misc/utils.py -------------------------------------------------------------------------------- /vedacore/model_zoo/open_mmlab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/model_zoo/open_mmlab.yaml -------------------------------------------------------------------------------- /vedacore/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/__init__.py -------------------------------------------------------------------------------- /vedacore/modules/bricks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/bricks/__init__.py -------------------------------------------------------------------------------- /vedacore/modules/bricks/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/bricks/activation.py -------------------------------------------------------------------------------- /vedacore/modules/bricks/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/bricks/conv.py -------------------------------------------------------------------------------- /vedacore/modules/bricks/conv_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/bricks/conv_module.py -------------------------------------------------------------------------------- /vedacore/modules/bricks/enhance_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/bricks/enhance_module.py -------------------------------------------------------------------------------- /vedacore/modules/bricks/hsigmoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/bricks/hsigmoid.py -------------------------------------------------------------------------------- /vedacore/modules/bricks/hswish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/bricks/hswish.py -------------------------------------------------------------------------------- /vedacore/modules/bricks/non_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/bricks/non_local.py -------------------------------------------------------------------------------- /vedacore/modules/bricks/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/bricks/norm.py -------------------------------------------------------------------------------- /vedacore/modules/bricks/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/bricks/padding.py -------------------------------------------------------------------------------- /vedacore/modules/bricks/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/bricks/plugin.py -------------------------------------------------------------------------------- /vedacore/modules/bricks/scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/bricks/scale.py -------------------------------------------------------------------------------- /vedacore/modules/bricks/upsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/bricks/upsample.py -------------------------------------------------------------------------------- /vedacore/modules/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/utils/__init__.py -------------------------------------------------------------------------------- /vedacore/modules/utils/flops_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/utils/flops_counter.py -------------------------------------------------------------------------------- /vedacore/modules/utils/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/modules/utils/weight_init.py -------------------------------------------------------------------------------- /vedacore/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/__init__.py -------------------------------------------------------------------------------- /vedacore/ops/dcn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/dcn/__init__.py -------------------------------------------------------------------------------- /vedacore/ops/dcn/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/dcn/deform_conv.py -------------------------------------------------------------------------------- /vedacore/ops/dcn/deform_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/dcn/deform_pool.py -------------------------------------------------------------------------------- /vedacore/ops/dcn/src/cuda/deform_conv_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/dcn/src/cuda/deform_conv_cuda.cpp -------------------------------------------------------------------------------- /vedacore/ops/dcn/src/cuda/deform_conv_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/dcn/src/cuda/deform_conv_cuda_kernel.cu -------------------------------------------------------------------------------- /vedacore/ops/dcn/src/cuda/deform_pool_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/dcn/src/cuda/deform_pool_cuda.cpp -------------------------------------------------------------------------------- /vedacore/ops/dcn/src/cuda/deform_pool_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/dcn/src/cuda/deform_pool_cuda_kernel.cu -------------------------------------------------------------------------------- /vedacore/ops/dcn/src/deform_conv_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/dcn/src/deform_conv_ext.cpp -------------------------------------------------------------------------------- /vedacore/ops/dcn/src/deform_pool_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/dcn/src/deform_pool_ext.cpp -------------------------------------------------------------------------------- /vedacore/ops/nms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/nms/__init__.py -------------------------------------------------------------------------------- /vedacore/ops/nms/nms_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/nms/nms_wrapper.py -------------------------------------------------------------------------------- /vedacore/ops/nms/src/cpu/nms_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/nms/src/cpu/nms_cpu.cpp -------------------------------------------------------------------------------- /vedacore/ops/nms/src/cuda/nms_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/nms/src/cuda/nms_cuda.cpp -------------------------------------------------------------------------------- /vedacore/ops/nms/src/cuda/nms_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/nms/src/cuda/nms_kernel.cu -------------------------------------------------------------------------------- /vedacore/ops/nms/src/nms_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/nms/src/nms_ext.cpp -------------------------------------------------------------------------------- /vedacore/ops/sigmoid_focal_loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/sigmoid_focal_loss/__init__.py -------------------------------------------------------------------------------- /vedacore/ops/sigmoid_focal_loss/sigmoid_focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/sigmoid_focal_loss/sigmoid_focal_loss.py -------------------------------------------------------------------------------- /vedacore/ops/sigmoid_focal_loss/src/cuda/sigmoid_focal_loss_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/sigmoid_focal_loss/src/cuda/sigmoid_focal_loss_cuda.cu -------------------------------------------------------------------------------- /vedacore/ops/sigmoid_focal_loss/src/sigmoid_focal_loss_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/ops/sigmoid_focal_loss/src/sigmoid_focal_loss_ext.cpp -------------------------------------------------------------------------------- /vedacore/optimizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/optimizers/__init__.py -------------------------------------------------------------------------------- /vedacore/optimizers/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/optimizers/builder.py -------------------------------------------------------------------------------- /vedacore/optimizers/default_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/optimizers/default_constructor.py -------------------------------------------------------------------------------- /vedacore/parallel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/parallel/__init__.py -------------------------------------------------------------------------------- /vedacore/parallel/_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/parallel/_functions.py -------------------------------------------------------------------------------- /vedacore/parallel/collate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/parallel/collate.py -------------------------------------------------------------------------------- /vedacore/parallel/data_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/parallel/data_container.py -------------------------------------------------------------------------------- /vedacore/parallel/data_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/parallel/data_parallel.py -------------------------------------------------------------------------------- /vedacore/parallel/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/parallel/dist_utils.py -------------------------------------------------------------------------------- /vedacore/parallel/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/parallel/distributed.py -------------------------------------------------------------------------------- /vedacore/parallel/scatter_gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/parallel/scatter_gather.py -------------------------------------------------------------------------------- /vedacore/parallel/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedacore/parallel/utils.py -------------------------------------------------------------------------------- /vedatad/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/__init__.py -------------------------------------------------------------------------------- /vedatad/assembler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/assembler/__init__.py -------------------------------------------------------------------------------- /vedatad/assembler/trainval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/assembler/trainval.py -------------------------------------------------------------------------------- /vedatad/bridge/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/bridge/__init__.py -------------------------------------------------------------------------------- /vedatad/bridge/converters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/bridge/converters/__init__.py -------------------------------------------------------------------------------- /vedatad/bridge/converters/base_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/bridge/converters/base_converter.py -------------------------------------------------------------------------------- /vedatad/bridge/converters/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/bridge/converters/builder.py -------------------------------------------------------------------------------- /vedatad/bridge/converters/fcos_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/bridge/converters/fcos_converter.py -------------------------------------------------------------------------------- /vedatad/bridge/converters/point_anchor_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/bridge/converters/point_anchor_converter.py -------------------------------------------------------------------------------- /vedatad/bridge/converters/segment_anchor_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/bridge/converters/segment_anchor_converter.py -------------------------------------------------------------------------------- /vedatad/bridge/meshgrids/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/bridge/meshgrids/__init__.py -------------------------------------------------------------------------------- /vedatad/bridge/meshgrids/base_anchors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/bridge/meshgrids/base_anchors/__init__.py -------------------------------------------------------------------------------- /vedatad/bridge/meshgrids/base_anchors/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/bridge/meshgrids/base_anchors/builder.py -------------------------------------------------------------------------------- /vedatad/bridge/meshgrids/base_anchors/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/bridge/meshgrids/base_anchors/segment.py -------------------------------------------------------------------------------- /vedatad/bridge/meshgrids/base_meshgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/bridge/meshgrids/base_meshgrid.py -------------------------------------------------------------------------------- /vedatad/bridge/meshgrids/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/bridge/meshgrids/builder.py -------------------------------------------------------------------------------- /vedatad/bridge/meshgrids/point_anchor_meshgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/bridge/meshgrids/point_anchor_meshgrid.py -------------------------------------------------------------------------------- /vedatad/bridge/meshgrids/segment_anchor_meshgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/bridge/meshgrids/segment_anchor_meshgrid.py -------------------------------------------------------------------------------- /vedatad/criteria/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/criteria/__init__.py -------------------------------------------------------------------------------- /vedatad/criteria/base_criterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/criteria/base_criterion.py -------------------------------------------------------------------------------- /vedatad/criteria/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/criteria/builder.py -------------------------------------------------------------------------------- /vedatad/criteria/fcos_criterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/criteria/fcos_criterion.py -------------------------------------------------------------------------------- /vedatad/criteria/fcos_criterion_batches_diou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/criteria/fcos_criterion_batches_diou.py -------------------------------------------------------------------------------- /vedatad/criteria/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/criteria/losses/__init__.py -------------------------------------------------------------------------------- /vedatad/criteria/losses/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/criteria/losses/builder.py -------------------------------------------------------------------------------- /vedatad/criteria/losses/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/criteria/losses/cross_entropy_loss.py -------------------------------------------------------------------------------- /vedatad/criteria/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/criteria/losses/focal_loss.py -------------------------------------------------------------------------------- /vedatad/criteria/losses/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/criteria/losses/iou_loss.py -------------------------------------------------------------------------------- /vedatad/criteria/losses/smooth_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/criteria/losses/smooth_l1_loss.py -------------------------------------------------------------------------------- /vedatad/criteria/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/criteria/losses/utils.py -------------------------------------------------------------------------------- /vedatad/criteria/segment_anchor_criterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/criteria/segment_anchor_criterion.py -------------------------------------------------------------------------------- /vedatad/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/__init__.py -------------------------------------------------------------------------------- /vedatad/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/builder.py -------------------------------------------------------------------------------- /vedatad/datasets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/custom.py -------------------------------------------------------------------------------- /vedatad/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /vedatad/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /vedatad/datasets/pipelines/auto_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/pipelines/auto_augment.py -------------------------------------------------------------------------------- /vedatad/datasets/pipelines/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/pipelines/compose.py -------------------------------------------------------------------------------- /vedatad/datasets/pipelines/formating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/pipelines/formating.py -------------------------------------------------------------------------------- /vedatad/datasets/pipelines/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/pipelines/loading.py -------------------------------------------------------------------------------- /vedatad/datasets/pipelines/test_time_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/pipelines/test_time_aug.py -------------------------------------------------------------------------------- /vedatad/datasets/pipelines/test_time_aug_twodirections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/pipelines/test_time_aug_twodirections.py -------------------------------------------------------------------------------- /vedatad/datasets/pipelines/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/pipelines/transforms.py -------------------------------------------------------------------------------- /vedatad/datasets/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/samplers/__init__.py -------------------------------------------------------------------------------- /vedatad/datasets/samplers/distributed_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/samplers/distributed_sampler.py -------------------------------------------------------------------------------- /vedatad/datasets/samplers/group_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/samplers/group_sampler.py -------------------------------------------------------------------------------- /vedatad/datasets/thumos14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/thumos14.py -------------------------------------------------------------------------------- /vedatad/datasets/thumos14_additional_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/datasets/thumos14_additional_background.py -------------------------------------------------------------------------------- /vedatad/engines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/engines/__init__.py -------------------------------------------------------------------------------- /vedatad/engines/base_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/engines/base_engine.py -------------------------------------------------------------------------------- /vedatad/engines/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/engines/builder.py -------------------------------------------------------------------------------- /vedatad/engines/infer_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/engines/infer_engine.py -------------------------------------------------------------------------------- /vedatad/engines/infer_engine_AF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/engines/infer_engine_AF.py -------------------------------------------------------------------------------- /vedatad/engines/train_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/engines/train_engine.py -------------------------------------------------------------------------------- /vedatad/engines/train_engine_AF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/engines/train_engine_AF.py -------------------------------------------------------------------------------- /vedatad/engines/val_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/engines/val_engine.py -------------------------------------------------------------------------------- /vedatad/engines/val_engine_AF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/engines/val_engine_AF.py -------------------------------------------------------------------------------- /vedatad/misc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/__init__.py -------------------------------------------------------------------------------- /vedatad/misc/anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/anchor.py -------------------------------------------------------------------------------- /vedatad/misc/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/evaluation/__init__.py -------------------------------------------------------------------------------- /vedatad/misc/evaluation/mean_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/evaluation/mean_ap.py -------------------------------------------------------------------------------- /vedatad/misc/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/logger.py -------------------------------------------------------------------------------- /vedatad/misc/segment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/__init__.py -------------------------------------------------------------------------------- /vedatad/misc/segment/assigners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/assigners/__init__.py -------------------------------------------------------------------------------- /vedatad/misc/segment/assigners/assign_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/assigners/assign_result.py -------------------------------------------------------------------------------- /vedatad/misc/segment/assigners/base_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/assigners/base_assigner.py -------------------------------------------------------------------------------- /vedatad/misc/segment/assigners/max_iou_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/assigners/max_iou_assigner.py -------------------------------------------------------------------------------- /vedatad/misc/segment/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/builder.py -------------------------------------------------------------------------------- /vedatad/misc/segment/coders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/coders/__init__.py -------------------------------------------------------------------------------- /vedatad/misc/segment/coders/base_segment_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/coders/base_segment_coder.py -------------------------------------------------------------------------------- /vedatad/misc/segment/coders/delta_segment_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/coders/delta_segment_coder.py -------------------------------------------------------------------------------- /vedatad/misc/segment/coders/pseudo_segment_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/coders/pseudo_segment_coder.py -------------------------------------------------------------------------------- /vedatad/misc/segment/demodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/demodata.py -------------------------------------------------------------------------------- /vedatad/misc/segment/iou_calculators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/iou_calculators/__init__.py -------------------------------------------------------------------------------- /vedatad/misc/segment/iou_calculators/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/iou_calculators/builder.py -------------------------------------------------------------------------------- /vedatad/misc/segment/iou_calculators/iou_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/iou_calculators/iou_calculator.py -------------------------------------------------------------------------------- /vedatad/misc/segment/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/samplers/__init__.py -------------------------------------------------------------------------------- /vedatad/misc/segment/samplers/base_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/samplers/base_sampler.py -------------------------------------------------------------------------------- /vedatad/misc/segment/samplers/combined_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/samplers/combined_sampler.py -------------------------------------------------------------------------------- /vedatad/misc/segment/samplers/instance_balanced_pos_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/samplers/instance_balanced_pos_sampler.py -------------------------------------------------------------------------------- /vedatad/misc/segment/samplers/iou_balanced_neg_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/samplers/iou_balanced_neg_sampler.py -------------------------------------------------------------------------------- /vedatad/misc/segment/samplers/pseudo_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/samplers/pseudo_sampler.py -------------------------------------------------------------------------------- /vedatad/misc/segment/samplers/random_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/samplers/random_sampler.py -------------------------------------------------------------------------------- /vedatad/misc/segment/samplers/sampling_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/samplers/sampling_result.py -------------------------------------------------------------------------------- /vedatad/misc/segment/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/segment.py -------------------------------------------------------------------------------- /vedatad/misc/segment/util_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/misc/segment/util_mixins.py -------------------------------------------------------------------------------- /vedatad/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/__init__.py -------------------------------------------------------------------------------- /vedatad/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/backbones/__init__.py -------------------------------------------------------------------------------- /vedatad/models/backbones/resnet3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/backbones/resnet3d.py -------------------------------------------------------------------------------- /vedatad/models/backbones/slowonly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/backbones/slowonly.py -------------------------------------------------------------------------------- /vedatad/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/builder.py -------------------------------------------------------------------------------- /vedatad/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/detectors/__init__.py -------------------------------------------------------------------------------- /vedatad/models/detectors/base_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/detectors/base_detector.py -------------------------------------------------------------------------------- /vedatad/models/detectors/single_stage_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/detectors/single_stage_detector.py -------------------------------------------------------------------------------- /vedatad/models/heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/heads/__init__.py -------------------------------------------------------------------------------- /vedatad/models/heads/anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/heads/anchor_head.py -------------------------------------------------------------------------------- /vedatad/models/heads/base_dense_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/heads/base_dense_head.py -------------------------------------------------------------------------------- /vedatad/models/heads/fcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/heads/fcos_head.py -------------------------------------------------------------------------------- /vedatad/models/heads/fcos_head_sigmoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/heads/fcos_head_sigmoid.py -------------------------------------------------------------------------------- /vedatad/models/heads/retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/heads/retina_head.py -------------------------------------------------------------------------------- /vedatad/models/necks/AF_tdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/necks/AF_tdm.py -------------------------------------------------------------------------------- /vedatad/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/necks/__init__.py -------------------------------------------------------------------------------- /vedatad/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/necks/fpn.py -------------------------------------------------------------------------------- /vedatad/models/necks/srm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/necks/srm.py -------------------------------------------------------------------------------- /vedatad/models/necks/tdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/necks/tdm.py -------------------------------------------------------------------------------- /vedatad/models/necks/vdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/necks/vdm.py -------------------------------------------------------------------------------- /vedatad/models/ops/roi_align/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/roi_align/__init__.py -------------------------------------------------------------------------------- /vedatad/models/ops/roi_align/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/roi_align/roi_align.py -------------------------------------------------------------------------------- /vedatad/models/ops/roi_align/src/roi_align_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/roi_align/src/roi_align_cuda.cpp -------------------------------------------------------------------------------- /vedatad/models/ops/roi_align/src/roi_align_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/roi_align/src/roi_align_kernel.cu -------------------------------------------------------------------------------- /vedatad/models/ops/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/setup.py -------------------------------------------------------------------------------- /vedatad/models/ops/temporal_deform_attn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/temporal_deform_attn/__init__.py -------------------------------------------------------------------------------- /vedatad/models/ops/temporal_deform_attn/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/temporal_deform_attn/functions/__init__.py -------------------------------------------------------------------------------- /vedatad/models/ops/temporal_deform_attn/functions/temporal_deform_attn_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/temporal_deform_attn/functions/temporal_deform_attn_func.py -------------------------------------------------------------------------------- /vedatad/models/ops/temporal_deform_attn/src/cpu/temporal_deform_attn_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/temporal_deform_attn/src/cpu/temporal_deform_attn_cpu.cpp -------------------------------------------------------------------------------- /vedatad/models/ops/temporal_deform_attn/src/cpu/temporal_deform_attn_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/temporal_deform_attn/src/cpu/temporal_deform_attn_cpu.h -------------------------------------------------------------------------------- /vedatad/models/ops/temporal_deform_attn/src/cuda/temporal_deform_attn_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/temporal_deform_attn/src/cuda/temporal_deform_attn_cuda.cu -------------------------------------------------------------------------------- /vedatad/models/ops/temporal_deform_attn/src/cuda/temporal_deform_attn_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/temporal_deform_attn/src/cuda/temporal_deform_attn_cuda.h -------------------------------------------------------------------------------- /vedatad/models/ops/temporal_deform_attn/src/cuda/temporal_deform_seq2col_cuda.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/temporal_deform_attn/src/cuda/temporal_deform_seq2col_cuda.cuh -------------------------------------------------------------------------------- /vedatad/models/ops/temporal_deform_attn/src/temporal_deform_attn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/temporal_deform_attn/src/temporal_deform_attn.h -------------------------------------------------------------------------------- /vedatad/models/ops/temporal_deform_attn/src/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/temporal_deform_attn/src/vision.cpp -------------------------------------------------------------------------------- /vedatad/models/ops/temporal_deform_attn/temporal_deform_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/ops/temporal_deform_attn/temporal_deform_attn.py -------------------------------------------------------------------------------- /vedatad/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/utils/__init__.py -------------------------------------------------------------------------------- /vedatad/models/utils/box_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/utils/box_ops.py -------------------------------------------------------------------------------- /vedatad/models/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/utils/misc.py -------------------------------------------------------------------------------- /vedatad/models/utils/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/BasicTAD/HEAD/vedatad/models/utils/res_layer.py --------------------------------------------------------------------------------