├── LICENSE ├── README.md ├── main.py ├── models ├── __init__.py ├── inflate.py ├── integration_distribution_module.py ├── resnet.py ├── salient_to_broad_module.py └── statistic_attention_block.py ├── transforms ├── spatial_transforms.py └── temporal_transforms.py └── utils ├── data_manager.py ├── eval_metrics.py ├── losses.py ├── samplers.py ├── utils.py └── video_loader.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/main.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/inflate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/models/inflate.py -------------------------------------------------------------------------------- /models/integration_distribution_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/models/integration_distribution_module.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/salient_to_broad_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/models/salient_to_broad_module.py -------------------------------------------------------------------------------- /models/statistic_attention_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/models/statistic_attention_block.py -------------------------------------------------------------------------------- /transforms/spatial_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/transforms/spatial_transforms.py -------------------------------------------------------------------------------- /transforms/temporal_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/transforms/temporal_transforms.py -------------------------------------------------------------------------------- /utils/data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/utils/data_manager.py -------------------------------------------------------------------------------- /utils/eval_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/utils/eval_metrics.py -------------------------------------------------------------------------------- /utils/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/utils/losses.py -------------------------------------------------------------------------------- /utils/samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/utils/samplers.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/video_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baist/SINet/HEAD/utils/video_loader.py --------------------------------------------------------------------------------