├── README.md ├── __pycache__ ├── data.cpython-36.pyc ├── evaluation.cpython-36.pyc ├── graph_pooling.cpython-36.pyc ├── model.cpython-36.pyc ├── opts.cpython-36.pyc ├── partialemb.cpython-36.pyc └── vocab.cpython-36.pyc ├── context_extractor └── adj.py ├── data.py ├── envs └── CMCAN.yaml ├── evaluation.py ├── log └── performance.log ├── model.py ├── opts.py ├── train.py ├── train.sh └── vocab.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/__pycache__/data.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/evaluation.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/__pycache__/evaluation.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/graph_pooling.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/__pycache__/graph_pooling.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/opts.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/__pycache__/opts.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/partialemb.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/__pycache__/partialemb.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/vocab.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/__pycache__/vocab.cpython-36.pyc -------------------------------------------------------------------------------- /context_extractor/adj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/context_extractor/adj.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/data.py -------------------------------------------------------------------------------- /envs/CMCAN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/envs/CMCAN.yaml -------------------------------------------------------------------------------- /evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/evaluation.py -------------------------------------------------------------------------------- /log/performance.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/model.py -------------------------------------------------------------------------------- /opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/opts.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/train.py -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/train.sh -------------------------------------------------------------------------------- /vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossmodalGroup/CMCAN/HEAD/vocab.py --------------------------------------------------------------------------------