├── .gitignore ├── LICENSE ├── README.md ├── __pycache__ ├── config.cpython-36.pyc ├── data.cpython-36.pyc ├── layer.cpython-36.pyc ├── model.cpython-36.pyc └── utils.cpython-36.pyc ├── config.py ├── data.py ├── graph ├── data │ └── vocab.txt ├── grapher.py ├── grapher_outputs │ └── graph_X51006401836.png ├── process_cvat │ ├── cvatxml2csv.py │ ├── ge_aid_label_fromtext.py │ └── generate_aid_labels.py └── process_txt │ ├── code_sentence.py │ ├── dict_all.txt │ ├── generate_vocab.py │ ├── parse_xml.py │ ├── stop_words.txt │ └── stop_words_bak.txt ├── layer.py ├── model.py ├── train_lstm_gcn.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/__pycache__/data.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/layer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/__pycache__/layer.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/config.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/data.py -------------------------------------------------------------------------------- /graph/data/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/graph/data/vocab.txt -------------------------------------------------------------------------------- /graph/grapher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/graph/grapher.py -------------------------------------------------------------------------------- /graph/grapher_outputs/graph_X51006401836.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/graph/grapher_outputs/graph_X51006401836.png -------------------------------------------------------------------------------- /graph/process_cvat/cvatxml2csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/graph/process_cvat/cvatxml2csv.py -------------------------------------------------------------------------------- /graph/process_cvat/ge_aid_label_fromtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/graph/process_cvat/ge_aid_label_fromtext.py -------------------------------------------------------------------------------- /graph/process_cvat/generate_aid_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/graph/process_cvat/generate_aid_labels.py -------------------------------------------------------------------------------- /graph/process_txt/code_sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/graph/process_txt/code_sentence.py -------------------------------------------------------------------------------- /graph/process_txt/dict_all.txt: -------------------------------------------------------------------------------- 1 | p.o. 2 | f.o.b. 3 | no. -------------------------------------------------------------------------------- /graph/process_txt/generate_vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/graph/process_txt/generate_vocab.py -------------------------------------------------------------------------------- /graph/process_txt/parse_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/graph/process_txt/parse_xml.py -------------------------------------------------------------------------------- /graph/process_txt/stop_words.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graph/process_txt/stop_words_bak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/graph/process_txt/stop_words_bak.txt -------------------------------------------------------------------------------- /layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/layer.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/model.py -------------------------------------------------------------------------------- /train_lstm_gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/train_lstm_gcn.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulia0228/Document_IE/HEAD/utils.py --------------------------------------------------------------------------------