├── README.md ├── __init__.py ├── checkpoint └── placeholder ├── data └── placeholder ├── ee ├── __init__.py ├── duee.json └── globalpointer_ee.py ├── model_hub └── placeholder ├── ner ├── __init__.py ├── bert_crf_ner.py └── globalpointer_ner.py └── re ├── __init__.py ├── casrel_re.py ├── dev_pred_casrel.json ├── dev_pred_globakpointer.json └── globalpointer_re.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/chinese_information_extraction/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkpoint/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ee/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ee/duee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/chinese_information_extraction/HEAD/ee/duee.json -------------------------------------------------------------------------------- /ee/globalpointer_ee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/chinese_information_extraction/HEAD/ee/globalpointer_ee.py -------------------------------------------------------------------------------- /model_hub/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ner/bert_crf_ner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/chinese_information_extraction/HEAD/ner/bert_crf_ner.py -------------------------------------------------------------------------------- /ner/globalpointer_ner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/chinese_information_extraction/HEAD/ner/globalpointer_ner.py -------------------------------------------------------------------------------- /re/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /re/casrel_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/chinese_information_extraction/HEAD/re/casrel_re.py -------------------------------------------------------------------------------- /re/dev_pred_casrel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/chinese_information_extraction/HEAD/re/dev_pred_casrel.json -------------------------------------------------------------------------------- /re/dev_pred_globakpointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/chinese_information_extraction/HEAD/re/dev_pred_globakpointer.json -------------------------------------------------------------------------------- /re/globalpointer_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/chinese_information_extraction/HEAD/re/globalpointer_re.py --------------------------------------------------------------------------------