├── README.md └── rel_extract ├── .ipynb_checkpoints ├── CLS_DGCNN_VEC-checkpoint.ipynb ├── GBDT-checkpoint.ipynb ├── NER_CRF-checkpoint.ipynb ├── bert-test-checkpoint.ipynb ├── cls-checkpoint.ipynb ├── gcn-checkpoint.ipynb ├── main-checkpoint.ipynb ├── post-checkpoint.ipynb └── word2vec-checkpoint.ipynb ├── CLS_DGCNN.py ├── CLS_DGCNN_VEC.ipynb ├── CLS_DGCNN_VEC.py ├── GBDT.ipynb ├── NER_CRF.ipynb ├── NER_CRF.py ├── conlleval.py-master ├── LICENSE ├── README.md ├── conlleval.py └── tests │ └── e-b-sequence.txt ├── dataset ├── __MACOSX │ └── test2_data │ │ ├── ._.DS_Store │ │ ├── ._License.docx │ │ └── ._test2_data.json ├── dev_data.zip ├── dict.pk ├── sample_data.json ├── schema.json ├── test1_data.zip ├── test2_data.zip └── train_data.zip ├── kg_make.py ├── main.ipynb ├── middle_data └── stopwords.txt ├── post.ipynb ├── requirements.txt ├── test_res kg.json ├── test_res.json └── word2vec.ipynb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/README.md -------------------------------------------------------------------------------- /rel_extract/.ipynb_checkpoints/CLS_DGCNN_VEC-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/.ipynb_checkpoints/CLS_DGCNN_VEC-checkpoint.ipynb -------------------------------------------------------------------------------- /rel_extract/.ipynb_checkpoints/GBDT-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/.ipynb_checkpoints/GBDT-checkpoint.ipynb -------------------------------------------------------------------------------- /rel_extract/.ipynb_checkpoints/NER_CRF-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/.ipynb_checkpoints/NER_CRF-checkpoint.ipynb -------------------------------------------------------------------------------- /rel_extract/.ipynb_checkpoints/bert-test-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/.ipynb_checkpoints/bert-test-checkpoint.ipynb -------------------------------------------------------------------------------- /rel_extract/.ipynb_checkpoints/cls-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/.ipynb_checkpoints/cls-checkpoint.ipynb -------------------------------------------------------------------------------- /rel_extract/.ipynb_checkpoints/gcn-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/.ipynb_checkpoints/gcn-checkpoint.ipynb -------------------------------------------------------------------------------- /rel_extract/.ipynb_checkpoints/main-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/.ipynb_checkpoints/main-checkpoint.ipynb -------------------------------------------------------------------------------- /rel_extract/.ipynb_checkpoints/post-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/.ipynb_checkpoints/post-checkpoint.ipynb -------------------------------------------------------------------------------- /rel_extract/.ipynb_checkpoints/word2vec-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/.ipynb_checkpoints/word2vec-checkpoint.ipynb -------------------------------------------------------------------------------- /rel_extract/CLS_DGCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/CLS_DGCNN.py -------------------------------------------------------------------------------- /rel_extract/CLS_DGCNN_VEC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/CLS_DGCNN_VEC.ipynb -------------------------------------------------------------------------------- /rel_extract/CLS_DGCNN_VEC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/CLS_DGCNN_VEC.py -------------------------------------------------------------------------------- /rel_extract/GBDT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/GBDT.ipynb -------------------------------------------------------------------------------- /rel_extract/NER_CRF.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/NER_CRF.ipynb -------------------------------------------------------------------------------- /rel_extract/NER_CRF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/NER_CRF.py -------------------------------------------------------------------------------- /rel_extract/conlleval.py-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/conlleval.py-master/LICENSE -------------------------------------------------------------------------------- /rel_extract/conlleval.py-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/conlleval.py-master/README.md -------------------------------------------------------------------------------- /rel_extract/conlleval.py-master/conlleval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/conlleval.py-master/conlleval.py -------------------------------------------------------------------------------- /rel_extract/conlleval.py-master/tests/e-b-sequence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/conlleval.py-master/tests/e-b-sequence.txt -------------------------------------------------------------------------------- /rel_extract/dataset/__MACOSX/test2_data/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/dataset/__MACOSX/test2_data/._.DS_Store -------------------------------------------------------------------------------- /rel_extract/dataset/__MACOSX/test2_data/._License.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/dataset/__MACOSX/test2_data/._License.docx -------------------------------------------------------------------------------- /rel_extract/dataset/__MACOSX/test2_data/._test2_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/dataset/__MACOSX/test2_data/._test2_data.json -------------------------------------------------------------------------------- /rel_extract/dataset/dev_data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/dataset/dev_data.zip -------------------------------------------------------------------------------- /rel_extract/dataset/dict.pk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/dataset/dict.pk -------------------------------------------------------------------------------- /rel_extract/dataset/sample_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/dataset/sample_data.json -------------------------------------------------------------------------------- /rel_extract/dataset/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/dataset/schema.json -------------------------------------------------------------------------------- /rel_extract/dataset/test1_data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/dataset/test1_data.zip -------------------------------------------------------------------------------- /rel_extract/dataset/test2_data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/dataset/test2_data.zip -------------------------------------------------------------------------------- /rel_extract/dataset/train_data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/dataset/train_data.zip -------------------------------------------------------------------------------- /rel_extract/kg_make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/kg_make.py -------------------------------------------------------------------------------- /rel_extract/main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/main.ipynb -------------------------------------------------------------------------------- /rel_extract/middle_data/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/middle_data/stopwords.txt -------------------------------------------------------------------------------- /rel_extract/post.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/post.ipynb -------------------------------------------------------------------------------- /rel_extract/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/requirements.txt -------------------------------------------------------------------------------- /rel_extract/test_res kg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/test_res kg.json -------------------------------------------------------------------------------- /rel_extract/test_res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/test_res.json -------------------------------------------------------------------------------- /rel_extract/word2vec.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aker218/Baidu-2020-Language-and-Intelligent-Technology-Competition-Relation-Extraction-rank15/HEAD/rel_extract/word2vec.ipynb --------------------------------------------------------------------------------