├── .gitattributes ├── .gitignore ├── CAD120 ├── compute_RoI_feats.py ├── config.py ├── data │ ├── testing_data.p │ └── training_data.p ├── models │ ├── GCN_spatial_subnet.py │ └── model_CAD120_LIGHTEN.py ├── test_CAD120.py └── train_CAD120.py ├── README.md ├── V-COCO ├── apply_prior.py ├── compute_RoI_feats.py ├── config.py ├── data │ ├── Test_Faster_RCNN_R-50-PFN_2x_VCOCO_Keypoints.pkl │ ├── action_index.json │ ├── prior_mask.pkl │ ├── testing_data.p │ └── training_data.p ├── eval_VCOCO.py ├── models │ ├── GCN_spatial_subnet.py │ └── model_VCOCO_LIGHTEN.py ├── output │ └── vcoco_test_scores.pkl ├── test_VCOCO.py ├── train_VCOCO.py └── vsrl_eval.py ├── requirements.txt └── teaser.PNG /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/.gitignore -------------------------------------------------------------------------------- /CAD120/compute_RoI_feats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/CAD120/compute_RoI_feats.py -------------------------------------------------------------------------------- /CAD120/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/CAD120/config.py -------------------------------------------------------------------------------- /CAD120/data/testing_data.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/CAD120/data/testing_data.p -------------------------------------------------------------------------------- /CAD120/data/training_data.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/CAD120/data/training_data.p -------------------------------------------------------------------------------- /CAD120/models/GCN_spatial_subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/CAD120/models/GCN_spatial_subnet.py -------------------------------------------------------------------------------- /CAD120/models/model_CAD120_LIGHTEN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/CAD120/models/model_CAD120_LIGHTEN.py -------------------------------------------------------------------------------- /CAD120/test_CAD120.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/CAD120/test_CAD120.py -------------------------------------------------------------------------------- /CAD120/train_CAD120.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/CAD120/train_CAD120.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/README.md -------------------------------------------------------------------------------- /V-COCO/apply_prior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/V-COCO/apply_prior.py -------------------------------------------------------------------------------- /V-COCO/compute_RoI_feats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/V-COCO/compute_RoI_feats.py -------------------------------------------------------------------------------- /V-COCO/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/V-COCO/config.py -------------------------------------------------------------------------------- /V-COCO/data/Test_Faster_RCNN_R-50-PFN_2x_VCOCO_Keypoints.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/V-COCO/data/Test_Faster_RCNN_R-50-PFN_2x_VCOCO_Keypoints.pkl -------------------------------------------------------------------------------- /V-COCO/data/action_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/V-COCO/data/action_index.json -------------------------------------------------------------------------------- /V-COCO/data/prior_mask.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/V-COCO/data/prior_mask.pkl -------------------------------------------------------------------------------- /V-COCO/data/testing_data.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/V-COCO/data/testing_data.p -------------------------------------------------------------------------------- /V-COCO/data/training_data.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/V-COCO/data/training_data.p -------------------------------------------------------------------------------- /V-COCO/eval_VCOCO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/V-COCO/eval_VCOCO.py -------------------------------------------------------------------------------- /V-COCO/models/GCN_spatial_subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/V-COCO/models/GCN_spatial_subnet.py -------------------------------------------------------------------------------- /V-COCO/models/model_VCOCO_LIGHTEN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/V-COCO/models/model_VCOCO_LIGHTEN.py -------------------------------------------------------------------------------- /V-COCO/output/vcoco_test_scores.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/V-COCO/output/vcoco_test_scores.pkl -------------------------------------------------------------------------------- /V-COCO/test_VCOCO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/V-COCO/test_VCOCO.py -------------------------------------------------------------------------------- /V-COCO/train_VCOCO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/V-COCO/train_VCOCO.py -------------------------------------------------------------------------------- /V-COCO/vsrl_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/V-COCO/vsrl_eval.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/requirements.txt -------------------------------------------------------------------------------- /teaser.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneeth11009/LIGHTEN-Learning-Interactions-with-Graphs-and-Hierarchical-TEmporal-Networks-for-HOI/HEAD/teaser.PNG --------------------------------------------------------------------------------