├── README.md ├── data ├── ava_dataset.py └── collate_batch.py ├── images ├── graph.jpg └── graph2.PNG ├── models ├── attention_layer.py ├── gat.py └── model.py ├── test.py ├── train.py └── utils ├── boxlist_ops.py └── checkpoints.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimagelab/STAGE_action_detection/HEAD/README.md -------------------------------------------------------------------------------- /data/ava_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimagelab/STAGE_action_detection/HEAD/data/ava_dataset.py -------------------------------------------------------------------------------- /data/collate_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimagelab/STAGE_action_detection/HEAD/data/collate_batch.py -------------------------------------------------------------------------------- /images/graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimagelab/STAGE_action_detection/HEAD/images/graph.jpg -------------------------------------------------------------------------------- /images/graph2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimagelab/STAGE_action_detection/HEAD/images/graph2.PNG -------------------------------------------------------------------------------- /models/attention_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimagelab/STAGE_action_detection/HEAD/models/attention_layer.py -------------------------------------------------------------------------------- /models/gat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimagelab/STAGE_action_detection/HEAD/models/gat.py -------------------------------------------------------------------------------- /models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimagelab/STAGE_action_detection/HEAD/models/model.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimagelab/STAGE_action_detection/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimagelab/STAGE_action_detection/HEAD/train.py -------------------------------------------------------------------------------- /utils/boxlist_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimagelab/STAGE_action_detection/HEAD/utils/boxlist_ops.py -------------------------------------------------------------------------------- /utils/checkpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimagelab/STAGE_action_detection/HEAD/utils/checkpoints.py --------------------------------------------------------------------------------