qiushuocheng commited on
Commit
646a537
·
verified ·
1 Parent(s): a00100e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Simple CodeBase for Skeleton Action Detection Evaluation
2
+ This is an repo for skeleton-based action detection, used for the evalution of the self-supervised models, e.g., [HiCLR](https://github.com/JHang2020/HiCLR), [PCM3](https://github.com/JHang2020/PCM3).
3
+
4
+ ## Dataset
5
+ You need to download the PKUMMD untrimmed dataset [here](https://www.icst.pku.edu.cn/struct/Projects/PKUMMD.html).
6
+
7
+ ## Test your model:
8
+ You need to choose your model arch and the params, change the config.yaml and run:
9
+ ```
10
+ python main.py detection_ds_linear_evaluation --config /mnt/netdisk/zhangjh/Code/skeleton_detection/detection/config/release/gcn_ntu60/linear_eval/detection.yaml
11
+ ```
12
+
13
+ ## Citation
14
+ If you find this repository useful, please consider citing our paper:
15
+ ```
16
+ @article{zhang2022s,
17
+ title={Hierarchical Consistent Contrastive Learning for Skeleton-Based Action Recognition with Growing Augmentations},
18
+ author={Zhang, Jiahang and Lin, Lilang and Liu, Jiaying},
19
+ journal={arXiv preprint arXiv:2211.13466},
20
+ year={2022},
21
+ }
22
+ ```
23
+
24
+ ```
25
+ @inproceedings{zhang2023prompted,
26
+ title={Prompted Contrast with Masked Motion Modeling: Towards Versatile 3D Action Representation Learning},
27
+ author={Zhang, Jiahang and Lin, Lilang and Liu, Jiaying},
28
+ booktitle={Proceedings of the 31st ACM International Conference on Multimedia},
29
+ pages={7175--7183},
30
+ year={2023}
31
+ }
32
+ ```
33
+
34
+
35
+ ## Acknowledgement
36
+ We sincerely thank the authors for releasing the code of their valuable works. Our code is built based on the PKUMMD.
37
+ ## Licence
38
+ This project is licensed under the terms of the MIT license.