├── Evaluation ├── data │ ├── activity_net.v1-3.min.json │ ├── activity_net_1_3_new.json │ ├── sample_classification_prediction.json │ └── sample_detection_prediction.json ├── eval_proposal.py ├── eval_proposal.pyc ├── utils.py └── utils.pyc ├── README.md ├── bsn.sh ├── checkpoint ├── pem_best.pth.tar └── tem_best.pth.tar ├── data ├── activitynet_annotations │ ├── action_name.csv │ ├── anet_anno_action.json │ └── video_info_new.csv └── activitynet_feature_cuhk │ ├── data_process.py │ └── ldb_process.py ├── dataset.py ├── eval.py ├── loss_function.py ├── main.py ├── models.py ├── opts.py ├── paper_pic └── eccv_overview.jpg ├── pgm.py └── post_processing.py /Evaluation/data/activity_net.v1-3.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/Evaluation/data/activity_net.v1-3.min.json -------------------------------------------------------------------------------- /Evaluation/data/activity_net_1_3_new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/Evaluation/data/activity_net_1_3_new.json -------------------------------------------------------------------------------- /Evaluation/data/sample_classification_prediction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/Evaluation/data/sample_classification_prediction.json -------------------------------------------------------------------------------- /Evaluation/data/sample_detection_prediction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/Evaluation/data/sample_detection_prediction.json -------------------------------------------------------------------------------- /Evaluation/eval_proposal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/Evaluation/eval_proposal.py -------------------------------------------------------------------------------- /Evaluation/eval_proposal.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/Evaluation/eval_proposal.pyc -------------------------------------------------------------------------------- /Evaluation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/Evaluation/utils.py -------------------------------------------------------------------------------- /Evaluation/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/Evaluation/utils.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/README.md -------------------------------------------------------------------------------- /bsn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/bsn.sh -------------------------------------------------------------------------------- /checkpoint/pem_best.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/checkpoint/pem_best.pth.tar -------------------------------------------------------------------------------- /checkpoint/tem_best.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/checkpoint/tem_best.pth.tar -------------------------------------------------------------------------------- /data/activitynet_annotations/action_name.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/data/activitynet_annotations/action_name.csv -------------------------------------------------------------------------------- /data/activitynet_annotations/anet_anno_action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/data/activitynet_annotations/anet_anno_action.json -------------------------------------------------------------------------------- /data/activitynet_annotations/video_info_new.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/data/activitynet_annotations/video_info_new.csv -------------------------------------------------------------------------------- /data/activitynet_feature_cuhk/data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/data/activitynet_feature_cuhk/data_process.py -------------------------------------------------------------------------------- /data/activitynet_feature_cuhk/ldb_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/data/activitynet_feature_cuhk/ldb_process.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/dataset.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/eval.py -------------------------------------------------------------------------------- /loss_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/loss_function.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/models.py -------------------------------------------------------------------------------- /opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/opts.py -------------------------------------------------------------------------------- /paper_pic/eccv_overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/paper_pic/eccv_overview.jpg -------------------------------------------------------------------------------- /pgm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/pgm.py -------------------------------------------------------------------------------- /post_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzmsltw/BSN-boundary-sensitive-network.pytorch/HEAD/post_processing.py --------------------------------------------------------------------------------