An unofficial PyTorch implementation of the paper "Skeleton-Based Action Recognition with Directed Graph Neural Networks" in CVPR 2019.
NOTE: Experiment results are not being updated due to hardware limits.
- Python >= 3.5
- scipy >= 1.3.0
- numpy >= 1.16.4
- PyTorch >= 1.1.0
- tensorboardX >= 1.8 (For logging)
Most of the interesting stuff can be found in:
model/dgnn.py: model definition of DGNNdata_gen/: how raw datasets are processed into numpy tensorsgraphs/directed_ntu_rgb_d.py: graph definition for DGNNfeeders/feeder.py: how datasets are read inmain.py: general training/eval processes; graph freezing by disabling gradients; etc.
-
The NTU RGB+D dataset can be downloaded from here. We'll only need the Skeleton data (~ 5.8G).
-
After downloading, unzip it and put the folder
nturgb+d_skeletonsto./data/nturgbd_raw/. -
Generate the joint dataset first:
cd data_gen
python3 ntu_gen_joint_data.pySpecify the data location if the raw skeletons data are placed somewhere else. The default looks at ./data/nturgbd_raw/.
- Then, in
data_gen/, generate the bone dataset:
python3 ntu_gen_bone_data.py- Finally, generate the motion data from joints/bones:
python3 ntu_gen_motion_data.pyThe generation scripts look for generated data in previous step. By default they look at ./data; change dir configs if needed.
(Currently, generating bone/motion data from Kinetics skeletons is not yet supported. Please feel free to add scripts based on kinetics_gendata.py)
- Download the Kinetics dataset from ST-GCN repo (https://github.com/yysijie/st-gcn)
- Generate joint data:
cd data_gen
python3 kinetics_gendata.py- Generate bone data: TODO, feel free to fork/submit PR :D
- Generate motion data: TODO, feel free to fork/submit PR :D
To start training the network with the spatial stream, use the following command:
python3 main.py --config ./config/<dataset>/train_spatial.yamlHere, <dataset> should be one of nturgbd-cross-subject, nturgbd-cross-view, or kinetics-skeleton depending on the dataset/task on which to train the model.
Note: At the moment, only nturgbd-cross-subject is supported. More config files will (hopefully) be added, or you could write your own config file using the existing ones for nturgbd-cross-subject.
Similarly, to train on the motion stream data, do:
python3 main.py --config ./config/nturgbd-cross-subject/train_motion.yamland change the config file path for other datasets if needed.
To test some model weights (by default saved in ./runs/), do:
python3 main.py --config ./config/<dataset>/test_spatial.yamlSimilarly, change the paths in config file, or change the config files (<dataset>) for different datasets as needed.
Combine the generated scores with:
python ensemble.py --datasets <dataset>where <dataset> is one of kinetics, ntu/xsub, ntu/xview
- Kinetics
- Handling datasets
- Config files