├── .gitignore ├── LICENSE ├── README.md ├── data └── eval.py ├── demo.ipynb ├── img ├── model.png └── word2vec.png ├── main.py ├── report.ipynb ├── requirements.txt ├── results └── result_test_example.json ├── src ├── __init__.py ├── data_process.py ├── model.py ├── train.py └── utils.py └── weights └── placeholder.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/README.md -------------------------------------------------------------------------------- /data/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/data/eval.py -------------------------------------------------------------------------------- /demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/demo.ipynb -------------------------------------------------------------------------------- /img/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/img/model.png -------------------------------------------------------------------------------- /img/word2vec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/img/word2vec.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/main.py -------------------------------------------------------------------------------- /report.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/report.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/result_test_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/results/result_test_example.json -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/src/data_process.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/src/model.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/src/train.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/src/utils.py -------------------------------------------------------------------------------- /weights/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuzf-git/CCKS2020-EntityLink/HEAD/weights/placeholder.txt --------------------------------------------------------------------------------