├── README.md ├── attention.py ├── contrast_loss.py ├── eval.py ├── figures └── framework.png ├── src ├── .DS_Store ├── __init__.py ├── data │ ├── __init__.py │ ├── dataset.py │ ├── helpers.py │ └── vocab.py ├── models │ ├── __init__.py │ ├── bert.py │ ├── image.py │ ├── late_fusion.py │ └── tool.py └── utils │ ├── __init__.py │ ├── logger.py │ └── utils.py ├── train.py └── util.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/README.md -------------------------------------------------------------------------------- /attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/attention.py -------------------------------------------------------------------------------- /contrast_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/contrast_loss.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/eval.py -------------------------------------------------------------------------------- /figures/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/figures/framework.png -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/src/data/dataset.py -------------------------------------------------------------------------------- /src/data/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/src/data/helpers.py -------------------------------------------------------------------------------- /src/data/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/src/data/vocab.py -------------------------------------------------------------------------------- /src/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/src/models/__init__.py -------------------------------------------------------------------------------- /src/models/bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/src/models/bert.py -------------------------------------------------------------------------------- /src/models/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/src/models/image.py -------------------------------------------------------------------------------- /src/models/late_fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/src/models/late_fusion.py -------------------------------------------------------------------------------- /src/models/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/src/models/tool.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/src/utils/logger.py -------------------------------------------------------------------------------- /src/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/src/utils/utils.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/train.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFM-MSG/Code_URMF/HEAD/util.py --------------------------------------------------------------------------------