├── README.md ├── action_classification.py ├── action_retrieval.py ├── data_gen ├── abc ├── ntu_gendata.py ├── preprocess.py └── rotation.py ├── dataset.py ├── feeder ├── __init__.py ├── abc ├── augmentations.py ├── feeder_downstream.py ├── feeder_pretraining_inter.py └── feeder_pretraining_intra.py ├── graph ├── __init__.py ├── abc ├── kinetics.py ├── ntu_rgb_d.py └── tools.py ├── images ├── results_classification.png ├── results_retrieval.png └── teaser.png ├── main_moco_inter_skeleton.py ├── main_moco_intra_skeleton.py ├── moco ├── AGCN.py ├── GRU.py ├── HCN.py ├── abc ├── builder_inter.py └── builder_intra.py ├── options ├── abc ├── options_classification.py ├── options_pretraining.py └── options_retrieval.py ├── script_action_classification.sh ├── script_action_retrieval.sh └── script_pretrain.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/README.md -------------------------------------------------------------------------------- /action_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/action_classification.py -------------------------------------------------------------------------------- /action_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/action_retrieval.py -------------------------------------------------------------------------------- /data_gen/abc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data_gen/ntu_gendata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/data_gen/ntu_gendata.py -------------------------------------------------------------------------------- /data_gen/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/data_gen/preprocess.py -------------------------------------------------------------------------------- /data_gen/rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/data_gen/rotation.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/dataset.py -------------------------------------------------------------------------------- /feeder/__init__.py: -------------------------------------------------------------------------------- 1 | from . import augmentations 2 | -------------------------------------------------------------------------------- /feeder/abc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /feeder/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/feeder/augmentations.py -------------------------------------------------------------------------------- /feeder/feeder_downstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/feeder/feeder_downstream.py -------------------------------------------------------------------------------- /feeder/feeder_pretraining_inter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/feeder/feeder_pretraining_inter.py -------------------------------------------------------------------------------- /feeder/feeder_pretraining_intra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/feeder/feeder_pretraining_intra.py -------------------------------------------------------------------------------- /graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/graph/__init__.py -------------------------------------------------------------------------------- /graph/abc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graph/kinetics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/graph/kinetics.py -------------------------------------------------------------------------------- /graph/ntu_rgb_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/graph/ntu_rgb_d.py -------------------------------------------------------------------------------- /graph/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/graph/tools.py -------------------------------------------------------------------------------- /images/results_classification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/images/results_classification.png -------------------------------------------------------------------------------- /images/results_retrieval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/images/results_retrieval.png -------------------------------------------------------------------------------- /images/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/images/teaser.png -------------------------------------------------------------------------------- /main_moco_inter_skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/main_moco_inter_skeleton.py -------------------------------------------------------------------------------- /main_moco_intra_skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/main_moco_intra_skeleton.py -------------------------------------------------------------------------------- /moco/AGCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/moco/AGCN.py -------------------------------------------------------------------------------- /moco/GRU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/moco/GRU.py -------------------------------------------------------------------------------- /moco/HCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/moco/HCN.py -------------------------------------------------------------------------------- /moco/abc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /moco/builder_inter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/moco/builder_inter.py -------------------------------------------------------------------------------- /moco/builder_intra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/moco/builder_intra.py -------------------------------------------------------------------------------- /options/abc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /options/options_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/options/options_classification.py -------------------------------------------------------------------------------- /options/options_pretraining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/options/options_pretraining.py -------------------------------------------------------------------------------- /options/options_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/options/options_retrieval.py -------------------------------------------------------------------------------- /script_action_classification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/script_action_classification.sh -------------------------------------------------------------------------------- /script_action_retrieval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/script_action_retrieval.sh -------------------------------------------------------------------------------- /script_pretrain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmthoker/skeleton-contrast/HEAD/script_pretrain.sh --------------------------------------------------------------------------------