├── README.md ├── checkpoints.py ├── datasets ├── __init__.py ├── charades.py └── transforms.py ├── exp └── GSTEG.py ├── imgs ├── GSTEG.png └── vidvrd.png ├── main.py ├── models ├── __init__.py ├── i3d.py └── layers │ ├── AsyncTFBase.py │ ├── AsyncTFCriterion.py │ ├── BalanceLabels.py │ ├── BlockGradient.py │ ├── EqualizeGradNorm.py │ ├── VerboseGradients.py │ └── __init__.py ├── opts.py ├── train.py └── utils ├── __init__.py ├── groundtruth.p ├── map.py └── tee.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/checkpoints.py -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/datasets/__init__.py -------------------------------------------------------------------------------- /datasets/charades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/datasets/charades.py -------------------------------------------------------------------------------- /datasets/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/datasets/transforms.py -------------------------------------------------------------------------------- /exp/GSTEG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/exp/GSTEG.py -------------------------------------------------------------------------------- /imgs/GSTEG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/imgs/GSTEG.png -------------------------------------------------------------------------------- /imgs/vidvrd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/imgs/vidvrd.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/main.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/i3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/models/i3d.py -------------------------------------------------------------------------------- /models/layers/AsyncTFBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/models/layers/AsyncTFBase.py -------------------------------------------------------------------------------- /models/layers/AsyncTFCriterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/models/layers/AsyncTFCriterion.py -------------------------------------------------------------------------------- /models/layers/BalanceLabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/models/layers/BalanceLabels.py -------------------------------------------------------------------------------- /models/layers/BlockGradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/models/layers/BlockGradient.py -------------------------------------------------------------------------------- /models/layers/EqualizeGradNorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/models/layers/EqualizeGradNorm.py -------------------------------------------------------------------------------- /models/layers/VerboseGradients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/models/layers/VerboseGradients.py -------------------------------------------------------------------------------- /models/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/opts.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/groundtruth.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/utils/groundtruth.p -------------------------------------------------------------------------------- /utils/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/utils/map.py -------------------------------------------------------------------------------- /utils/tee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaohungt/Gated-Spatio-Temporal-Energy-Graph/HEAD/utils/tee.py --------------------------------------------------------------------------------