├── CRModel.py ├── README.md ├── __init__.py ├── bertBaseModel.py ├── checkpoints └── 占位.txt ├── config.py ├── data ├── README.txt ├── cluewsc2020_public.zip ├── dev.json ├── test.json ├── test1.0.json └── train.json ├── dataset.py ├── logs ├── main.log └── preprocess.log ├── main.py ├── preprocess.py ├── processor_test.py └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-36.pyc ├── early_stop.cpython-36.pyc └── utils.cpython-36.pyc ├── early_stop.py └── utils.py /CRModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/CRModel.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bertBaseModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/bertBaseModel.py -------------------------------------------------------------------------------- /checkpoints/占位.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/config.py -------------------------------------------------------------------------------- /data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/data/README.txt -------------------------------------------------------------------------------- /data/cluewsc2020_public.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/data/cluewsc2020_public.zip -------------------------------------------------------------------------------- /data/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/data/dev.json -------------------------------------------------------------------------------- /data/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/data/test.json -------------------------------------------------------------------------------- /data/test1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/data/test1.0.json -------------------------------------------------------------------------------- /data/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/data/train.json -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/dataset.py -------------------------------------------------------------------------------- /logs/main.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/logs/main.log -------------------------------------------------------------------------------- /logs/preprocess.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/logs/preprocess.log -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/main.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/preprocess.py -------------------------------------------------------------------------------- /processor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/processor_test.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/early_stop.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/utils/__pycache__/early_stop.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/utils/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/early_stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/utils/early_stop.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_coreference_resolution/HEAD/utils/utils.py --------------------------------------------------------------------------------