├── .gitignore ├── README.md ├── ckpt └── Thumos14reduced │ └── gau_fuse_wstal │ ├── 350.pkl │ └── Thumos14reduced-results.log ├── evaluation ├── classificationMAP.py ├── detectionMAP.py └── eval.py ├── main.py ├── method.py ├── model ├── losses.py ├── main_branch.py └── memory.py ├── options.py └── utils ├── utils.py └── video_dataloader.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhou745/GauFuse_WSTAL/HEAD/README.md -------------------------------------------------------------------------------- /ckpt/Thumos14reduced/gau_fuse_wstal/350.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhou745/GauFuse_WSTAL/HEAD/ckpt/Thumos14reduced/gau_fuse_wstal/350.pkl -------------------------------------------------------------------------------- /ckpt/Thumos14reduced/gau_fuse_wstal/Thumos14reduced-results.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhou745/GauFuse_WSTAL/HEAD/ckpt/Thumos14reduced/gau_fuse_wstal/Thumos14reduced-results.log -------------------------------------------------------------------------------- /evaluation/classificationMAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhou745/GauFuse_WSTAL/HEAD/evaluation/classificationMAP.py -------------------------------------------------------------------------------- /evaluation/detectionMAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhou745/GauFuse_WSTAL/HEAD/evaluation/detectionMAP.py -------------------------------------------------------------------------------- /evaluation/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhou745/GauFuse_WSTAL/HEAD/evaluation/eval.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhou745/GauFuse_WSTAL/HEAD/main.py -------------------------------------------------------------------------------- /method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhou745/GauFuse_WSTAL/HEAD/method.py -------------------------------------------------------------------------------- /model/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhou745/GauFuse_WSTAL/HEAD/model/losses.py -------------------------------------------------------------------------------- /model/main_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhou745/GauFuse_WSTAL/HEAD/model/main_branch.py -------------------------------------------------------------------------------- /model/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhou745/GauFuse_WSTAL/HEAD/model/memory.py -------------------------------------------------------------------------------- /options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhou745/GauFuse_WSTAL/HEAD/options.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhou745/GauFuse_WSTAL/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/video_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhou745/GauFuse_WSTAL/HEAD/utils/video_dataloader.py --------------------------------------------------------------------------------