├── LICENSE ├── README.md ├── data └── .gitignore ├── models.py ├── run_bert_multitask.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPlab-skku/MTL-KGC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPlab-skku/MTL-KGC/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPlab-skku/MTL-KGC/HEAD/models.py -------------------------------------------------------------------------------- /run_bert_multitask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPlab-skku/MTL-KGC/HEAD/run_bert_multitask.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPlab-skku/MTL-KGC/HEAD/utils.py --------------------------------------------------------------------------------