├── LICENSE ├── README.md ├── arguments.py ├── data └── preprocessing │ ├── LICENSE │ ├── NTU_datasets.py │ ├── ntu120_gendata.py │ ├── ntu60_gendata.py │ └── preprocess_ntu.py ├── feeder ├── ntu_feeder.py └── tools.py ├── figures └── framework.jpg ├── learn_PTmodel.py ├── linear_eval_protocol.py ├── model ├── downstream.py ├── pretrain.py └── transformer.py ├── requirements.txt └── test_actionrecog.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/README.md -------------------------------------------------------------------------------- /arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/arguments.py -------------------------------------------------------------------------------- /data/preprocessing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/data/preprocessing/LICENSE -------------------------------------------------------------------------------- /data/preprocessing/NTU_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/data/preprocessing/NTU_datasets.py -------------------------------------------------------------------------------- /data/preprocessing/ntu120_gendata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/data/preprocessing/ntu120_gendata.py -------------------------------------------------------------------------------- /data/preprocessing/ntu60_gendata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/data/preprocessing/ntu60_gendata.py -------------------------------------------------------------------------------- /data/preprocessing/preprocess_ntu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/data/preprocessing/preprocess_ntu.py -------------------------------------------------------------------------------- /feeder/ntu_feeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/feeder/ntu_feeder.py -------------------------------------------------------------------------------- /feeder/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/feeder/tools.py -------------------------------------------------------------------------------- /figures/framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/figures/framework.jpg -------------------------------------------------------------------------------- /learn_PTmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/learn_PTmodel.py -------------------------------------------------------------------------------- /linear_eval_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/linear_eval_protocol.py -------------------------------------------------------------------------------- /model/downstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/model/downstream.py -------------------------------------------------------------------------------- /model/pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/model/pretrain.py -------------------------------------------------------------------------------- /model/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/model/transformer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_actionrecog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boeun-Kim/GL-Transformer/HEAD/test_actionrecog.py --------------------------------------------------------------------------------