├── Figs ├── att_easy.jpg └── demo_thumbnail.png ├── README.md ├── attention_visualization.py ├── cmm_test.py ├── cmm_train.py ├── data ├── Annotations.txt ├── audio_feature_noisy.h5 ├── labels.h5 ├── labels_closs.h5 ├── labels_noisy.h5 ├── mil_labels.h5 ├── test_order.h5 ├── test_order_match.h5 ├── train_order.h5 ├── train_order_match.h5 ├── val_order.h5 └── val_order_match.h5 ├── dataloader.py ├── model ├── AV_att.pt ├── AV_att_weak.pt └── cmm_model_weights.h5 ├── models.py ├── models_fusion.py ├── models_weakly.py ├── supervised_main.py ├── visual_att └── -pyreSm_sQs │ └── pic0000.jpg └── weak_supervised_main.py /Figs/att_easy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/Figs/att_easy.jpg -------------------------------------------------------------------------------- /Figs/demo_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/Figs/demo_thumbnail.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/README.md -------------------------------------------------------------------------------- /attention_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/attention_visualization.py -------------------------------------------------------------------------------- /cmm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/cmm_test.py -------------------------------------------------------------------------------- /cmm_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/cmm_train.py -------------------------------------------------------------------------------- /data/Annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/data/Annotations.txt -------------------------------------------------------------------------------- /data/audio_feature_noisy.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/data/audio_feature_noisy.h5 -------------------------------------------------------------------------------- /data/labels.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/data/labels.h5 -------------------------------------------------------------------------------- /data/labels_closs.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/data/labels_closs.h5 -------------------------------------------------------------------------------- /data/labels_noisy.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/data/labels_noisy.h5 -------------------------------------------------------------------------------- /data/mil_labels.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/data/mil_labels.h5 -------------------------------------------------------------------------------- /data/test_order.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/data/test_order.h5 -------------------------------------------------------------------------------- /data/test_order_match.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/data/test_order_match.h5 -------------------------------------------------------------------------------- /data/train_order.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/data/train_order.h5 -------------------------------------------------------------------------------- /data/train_order_match.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/data/train_order_match.h5 -------------------------------------------------------------------------------- /data/val_order.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/data/val_order.h5 -------------------------------------------------------------------------------- /data/val_order_match.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/data/val_order_match.h5 -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/dataloader.py -------------------------------------------------------------------------------- /model/AV_att.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/model/AV_att.pt -------------------------------------------------------------------------------- /model/AV_att_weak.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/model/AV_att_weak.pt -------------------------------------------------------------------------------- /model/cmm_model_weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/model/cmm_model_weights.h5 -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/models.py -------------------------------------------------------------------------------- /models_fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/models_fusion.py -------------------------------------------------------------------------------- /models_weakly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/models_weakly.py -------------------------------------------------------------------------------- /supervised_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/supervised_main.py -------------------------------------------------------------------------------- /visual_att/-pyreSm_sQs/pic0000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/visual_att/-pyreSm_sQs/pic0000.jpg -------------------------------------------------------------------------------- /weak_supervised_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YapengTian/AVE-ECCV18/HEAD/weak_supervised_main.py --------------------------------------------------------------------------------