├── .gitignore ├── Chinese-Word-Vectors └── 这里放词向量.txt ├── LICENSE ├── README.md ├── data └── 这里放比赛数据.txt ├── data_deal ├── 10000 │ └── develop_data.pkl └── tokenizer.pkl ├── embedding.py ├── kb_id_distribution.py ├── net ├── Net.py ├── __init__.py ├── dataset.py ├── module │ ├── Embeds.py │ ├── Features.py │ ├── Features_Link.py │ └── __init__.py └── task │ ├── Link_KB.py │ ├── Locate_Entity.py │ └── __init__.py ├── net_ner ├── Net.py ├── __init__.py ├── dataset.py ├── module │ ├── Embeds.py │ ├── Features.py │ └── __init__.py └── task │ ├── Locate_Entity.py │ └── __init__.py ├── picture └── score.png ├── predict.py ├── preprocess.py ├── preprocess_dev.py ├── preprocess_test.py ├── pretrain └── 这里放bert、bert-wwm、ernie.txt ├── submit_test.py ├── train_part_link.py └── train_part_ner.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | -------------------------------------------------------------------------------- /Chinese-Word-Vectors/这里放词向量.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/README.md -------------------------------------------------------------------------------- /data/这里放比赛数据.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_deal/10000/develop_data.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/data_deal/10000/develop_data.pkl -------------------------------------------------------------------------------- /data_deal/tokenizer.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/data_deal/tokenizer.pkl -------------------------------------------------------------------------------- /embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/embedding.py -------------------------------------------------------------------------------- /kb_id_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/kb_id_distribution.py -------------------------------------------------------------------------------- /net/Net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net/Net.py -------------------------------------------------------------------------------- /net/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net/__init__.py -------------------------------------------------------------------------------- /net/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net/dataset.py -------------------------------------------------------------------------------- /net/module/Embeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net/module/Embeds.py -------------------------------------------------------------------------------- /net/module/Features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net/module/Features.py -------------------------------------------------------------------------------- /net/module/Features_Link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net/module/Features_Link.py -------------------------------------------------------------------------------- /net/module/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net/module/__init__.py -------------------------------------------------------------------------------- /net/task/Link_KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net/task/Link_KB.py -------------------------------------------------------------------------------- /net/task/Locate_Entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net/task/Locate_Entity.py -------------------------------------------------------------------------------- /net/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net/task/__init__.py -------------------------------------------------------------------------------- /net_ner/Net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net_ner/Net.py -------------------------------------------------------------------------------- /net_ner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net_ner/__init__.py -------------------------------------------------------------------------------- /net_ner/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net_ner/dataset.py -------------------------------------------------------------------------------- /net_ner/module/Embeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net_ner/module/Embeds.py -------------------------------------------------------------------------------- /net_ner/module/Features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net_ner/module/Features.py -------------------------------------------------------------------------------- /net_ner/module/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net_ner/module/__init__.py -------------------------------------------------------------------------------- /net_ner/task/Locate_Entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net_ner/task/Locate_Entity.py -------------------------------------------------------------------------------- /net_ner/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/net_ner/task/__init__.py -------------------------------------------------------------------------------- /picture/score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/picture/score.png -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/predict.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/preprocess.py -------------------------------------------------------------------------------- /preprocess_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/preprocess_dev.py -------------------------------------------------------------------------------- /preprocess_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/preprocess_test.py -------------------------------------------------------------------------------- /pretrain/这里放bert、bert-wwm、ernie.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /submit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/submit_test.py -------------------------------------------------------------------------------- /train_part_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/train_part_link.py -------------------------------------------------------------------------------- /train_part_ner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/ccks2019_el/HEAD/train_part_ner.py --------------------------------------------------------------------------------