├── README.md ├── data └── README.md ├── dataset ├── __pycache__ │ ├── referit_loader.cpython-35.pyc │ └── vid_loader.cpython-35.pyc ├── referit_loader.py └── vid_loader.py ├── logs └── README.md ├── model ├── __pycache__ │ ├── cogrounding_model_semantic_attn.cpython-35.pyc │ ├── darknet.cpython-35.pyc │ └── grounding_model_semantic_attn.cpython-35.pyc ├── cogrounding_model_semantic_attn.py ├── darknet.py ├── grounding_model_semantic_attn.py ├── test_cogrounding_model_semantic_attn.py └── yolov3.cfg ├── post_processing.py ├── saved_models └── README.md ├── test_semantic_attention_cogrounding.py ├── train_semantic_attention_cogrounding.py ├── train_semantic_attention_visual_grounding.py └── utils ├── __init__.py ├── __init__.pyc ├── __pycache__ ├── __init__.cpython-35.pyc ├── parsing_metrics.cpython-35.pyc ├── save_attention_map.cpython-35.pyc ├── transforms.cpython-35.pyc ├── utils.cpython-35.pyc ├── weighted_ce_loss.cpython-35.pyc └── word_utils.cpython-35.pyc ├── losses.py ├── misc_utils.py ├── parsing_metrics.py ├── transforms.py ├── utils.py ├── utils.pyc ├── weighted_ce_loss.py ├── word_utils.py └── word_utils.pyc /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | Data path files will be here. 2 | -------------------------------------------------------------------------------- /dataset/__pycache__/referit_loader.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/dataset/__pycache__/referit_loader.cpython-35.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/vid_loader.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/dataset/__pycache__/vid_loader.cpython-35.pyc -------------------------------------------------------------------------------- /dataset/referit_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/dataset/referit_loader.py -------------------------------------------------------------------------------- /dataset/vid_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/dataset/vid_loader.py -------------------------------------------------------------------------------- /logs/README.md: -------------------------------------------------------------------------------- 1 | logs will be shown here 2 | -------------------------------------------------------------------------------- /model/__pycache__/cogrounding_model_semantic_attn.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/model/__pycache__/cogrounding_model_semantic_attn.cpython-35.pyc -------------------------------------------------------------------------------- /model/__pycache__/darknet.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/model/__pycache__/darknet.cpython-35.pyc -------------------------------------------------------------------------------- /model/__pycache__/grounding_model_semantic_attn.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/model/__pycache__/grounding_model_semantic_attn.cpython-35.pyc -------------------------------------------------------------------------------- /model/cogrounding_model_semantic_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/model/cogrounding_model_semantic_attn.py -------------------------------------------------------------------------------- /model/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/model/darknet.py -------------------------------------------------------------------------------- /model/grounding_model_semantic_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/model/grounding_model_semantic_attn.py -------------------------------------------------------------------------------- /model/test_cogrounding_model_semantic_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/model/test_cogrounding_model_semantic_attn.py -------------------------------------------------------------------------------- /model/yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/model/yolov3.cfg -------------------------------------------------------------------------------- /post_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/post_processing.py -------------------------------------------------------------------------------- /saved_models/README.md: -------------------------------------------------------------------------------- 1 | training models will be saved here. 2 | -------------------------------------------------------------------------------- /test_semantic_attention_cogrounding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/test_semantic_attention_cogrounding.py -------------------------------------------------------------------------------- /train_semantic_attention_cogrounding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/train_semantic_attention_cogrounding.py -------------------------------------------------------------------------------- /train_semantic_attention_visual_grounding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/train_semantic_attention_visual_grounding.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/__init__.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/parsing_metrics.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/__pycache__/parsing_metrics.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/save_attention_map.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/__pycache__/save_attention_map.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/transforms.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/__pycache__/transforms.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/__pycache__/utils.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/weighted_ce_loss.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/__pycache__/weighted_ce_loss.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/word_utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/__pycache__/word_utils.cpython-35.pyc -------------------------------------------------------------------------------- /utils/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/losses.py -------------------------------------------------------------------------------- /utils/misc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/misc_utils.py -------------------------------------------------------------------------------- /utils/parsing_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/parsing_metrics.py -------------------------------------------------------------------------------- /utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/transforms.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/utils.pyc -------------------------------------------------------------------------------- /utils/weighted_ce_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/weighted_ce_loss.py -------------------------------------------------------------------------------- /utils/word_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/word_utils.py -------------------------------------------------------------------------------- /utils/word_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SijieSong/CVPR21-Cogrounding_semantic_attention/HEAD/utils/word_utils.pyc --------------------------------------------------------------------------------