├── LICENSE ├── PLM ├── bert-base-uncased │ └── .placeholder └── bert-large-uncased │ └── .placeholder ├── README.md ├── code ├── checkpoint │ └── .placeholder ├── config.py ├── data.py ├── eval_GAIN_BERT.sh ├── eval_GAIN_GloVe.sh ├── fig_result │ └── .placeholder ├── logs │ └── .placeholder ├── models │ ├── GAIN.py │ └── GAIN_nomention.py ├── run_GAIN_BERT.sh ├── run_GAIN_GloVe.sh ├── test.py ├── train.py └── utils.py ├── data ├── README.md └── prepro_data │ └── .placeholder ├── pictures ├── model.png └── results.png └── test_result_jsons └── test_result_62.76_F1.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/LICENSE -------------------------------------------------------------------------------- /PLM/bert-base-uncased/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PLM/bert-large-uncased/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/README.md -------------------------------------------------------------------------------- /code/checkpoint/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/code/config.py -------------------------------------------------------------------------------- /code/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/code/data.py -------------------------------------------------------------------------------- /code/eval_GAIN_BERT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/code/eval_GAIN_BERT.sh -------------------------------------------------------------------------------- /code/eval_GAIN_GloVe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/code/eval_GAIN_GloVe.sh -------------------------------------------------------------------------------- /code/fig_result/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/logs/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/models/GAIN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/code/models/GAIN.py -------------------------------------------------------------------------------- /code/models/GAIN_nomention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/code/models/GAIN_nomention.py -------------------------------------------------------------------------------- /code/run_GAIN_BERT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/code/run_GAIN_BERT.sh -------------------------------------------------------------------------------- /code/run_GAIN_GloVe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/code/run_GAIN_GloVe.sh -------------------------------------------------------------------------------- /code/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/code/test.py -------------------------------------------------------------------------------- /code/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/code/train.py -------------------------------------------------------------------------------- /code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/code/utils.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/data/README.md -------------------------------------------------------------------------------- /data/prepro_data/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pictures/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/pictures/model.png -------------------------------------------------------------------------------- /pictures/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/pictures/results.png -------------------------------------------------------------------------------- /test_result_jsons/test_result_62.76_F1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamInvoker/GAIN/HEAD/test_result_jsons/test_result_62.76_F1.json --------------------------------------------------------------------------------