├── README.md ├── bucket_iterator.py ├── data_utils.py ├── generate_cross_modal_graph.py ├── get_VITfeats.ipynb ├── get_boxes.ipynb ├── glove_embedding.py ├── layers ├── __init__.py ├── attention.py └── dynamic_rnn.py ├── models └── CMGCN.py ├── run.sh └── train.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HITSZ-HLT/CMGCN/HEAD/README.md -------------------------------------------------------------------------------- /bucket_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HITSZ-HLT/CMGCN/HEAD/bucket_iterator.py -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HITSZ-HLT/CMGCN/HEAD/data_utils.py -------------------------------------------------------------------------------- /generate_cross_modal_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HITSZ-HLT/CMGCN/HEAD/generate_cross_modal_graph.py -------------------------------------------------------------------------------- /get_VITfeats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HITSZ-HLT/CMGCN/HEAD/get_VITfeats.ipynb -------------------------------------------------------------------------------- /get_boxes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HITSZ-HLT/CMGCN/HEAD/get_boxes.ipynb -------------------------------------------------------------------------------- /glove_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HITSZ-HLT/CMGCN/HEAD/glove_embedding.py -------------------------------------------------------------------------------- /layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layers/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HITSZ-HLT/CMGCN/HEAD/layers/attention.py -------------------------------------------------------------------------------- /layers/dynamic_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HITSZ-HLT/CMGCN/HEAD/layers/dynamic_rnn.py -------------------------------------------------------------------------------- /models/CMGCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HITSZ-HLT/CMGCN/HEAD/models/CMGCN.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HITSZ-HLT/CMGCN/HEAD/run.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HITSZ-HLT/CMGCN/HEAD/train.py --------------------------------------------------------------------------------