├── README.md ├── checkpoints └── 占位.txt ├── config.py ├── data └── ske │ ├── mid_data │ └── predicates.json │ └── raw_data │ ├── all_50_schemas │ ├── dev_data.json │ └── process.py ├── data_loader.py ├── logs └── bert.log ├── main.py ├── model.py ├── model_hub └── 占位.txt └── utils ├── __pycache__ ├── common_utils.cpython-37.pyc ├── metric_utils.cpython-37.pyc └── train_utils.cpython-37.pyc ├── common_utils.py ├── metric_utils.py └── train_utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/占位.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/config.py -------------------------------------------------------------------------------- /data/ske/mid_data/predicates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/data/ske/mid_data/predicates.json -------------------------------------------------------------------------------- /data/ske/raw_data/all_50_schemas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/data/ske/raw_data/all_50_schemas -------------------------------------------------------------------------------- /data/ske/raw_data/dev_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/data/ske/raw_data/dev_data.json -------------------------------------------------------------------------------- /data/ske/raw_data/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/data/ske/raw_data/process.py -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/data_loader.py -------------------------------------------------------------------------------- /logs/bert.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/logs/bert.log -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/model.py -------------------------------------------------------------------------------- /model_hub/占位.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/common_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/utils/__pycache__/common_utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/metric_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/utils/__pycache__/metric_utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/train_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/utils/__pycache__/train_utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/common_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/utils/common_utils.py -------------------------------------------------------------------------------- /utils/metric_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/utils/metric_utils.py -------------------------------------------------------------------------------- /utils/train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_GlobalPointer_triple_extraction/HEAD/utils/train_utils.py --------------------------------------------------------------------------------