├── .gitignore ├── README.md ├── data_utils.py ├── draw_plot.py ├── nrekit ├── __init__.py ├── data_loader.py ├── data_loader_en.py ├── framework.py └── network │ ├── __init__.py │ ├── classifier.py │ ├── embedding.py │ ├── encoder.py │ └── selector.py ├── test_demo.py └── train_demo.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoQ1/Chinese-relation-extraction/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoQ1/Chinese-relation-extraction/HEAD/README.md -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoQ1/Chinese-relation-extraction/HEAD/data_utils.py -------------------------------------------------------------------------------- /draw_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoQ1/Chinese-relation-extraction/HEAD/draw_plot.py -------------------------------------------------------------------------------- /nrekit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoQ1/Chinese-relation-extraction/HEAD/nrekit/__init__.py -------------------------------------------------------------------------------- /nrekit/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoQ1/Chinese-relation-extraction/HEAD/nrekit/data_loader.py -------------------------------------------------------------------------------- /nrekit/data_loader_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoQ1/Chinese-relation-extraction/HEAD/nrekit/data_loader_en.py -------------------------------------------------------------------------------- /nrekit/framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoQ1/Chinese-relation-extraction/HEAD/nrekit/framework.py -------------------------------------------------------------------------------- /nrekit/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoQ1/Chinese-relation-extraction/HEAD/nrekit/network/__init__.py -------------------------------------------------------------------------------- /nrekit/network/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoQ1/Chinese-relation-extraction/HEAD/nrekit/network/classifier.py -------------------------------------------------------------------------------- /nrekit/network/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoQ1/Chinese-relation-extraction/HEAD/nrekit/network/embedding.py -------------------------------------------------------------------------------- /nrekit/network/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoQ1/Chinese-relation-extraction/HEAD/nrekit/network/encoder.py -------------------------------------------------------------------------------- /nrekit/network/selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoQ1/Chinese-relation-extraction/HEAD/nrekit/network/selector.py -------------------------------------------------------------------------------- /test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoQ1/Chinese-relation-extraction/HEAD/test_demo.py -------------------------------------------------------------------------------- /train_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoQ1/Chinese-relation-extraction/HEAD/train_demo.py --------------------------------------------------------------------------------