├── .idea ├── dgcnn_for_reading_comprehension.iml ├── dictionaries │ └── Lenovo.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── datasets └── README.md ├── dgcnn ├── README.md └── dgcnn.py ├── evaluate_tool ├── README.md ├── evaluate.py ├── punctuation ├── qid_answer_expand ├── string_tool.py ├── test_input └── test_out ├── requirements.txt └── word2vec_baike └── README.md /.idea/dgcnn_for_reading_comprehension.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/.idea/dgcnn_for_reading_comprehension.iml -------------------------------------------------------------------------------- /.idea/dictionaries/Lenovo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/.idea/dictionaries/Lenovo.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/README.md -------------------------------------------------------------------------------- /datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/datasets/README.md -------------------------------------------------------------------------------- /dgcnn/README.md: -------------------------------------------------------------------------------- 1 | ## 主训练文件 2 | 3 | 直接 4 | ```python dgcnn.py``` 5 | 训练即可。 6 | 7 | 其中用到RAdam优化器:https://github.com/bojone/keras_radam 8 | -------------------------------------------------------------------------------- /dgcnn/dgcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/dgcnn/dgcnn.py -------------------------------------------------------------------------------- /evaluate_tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/evaluate_tool/README.md -------------------------------------------------------------------------------- /evaluate_tool/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/evaluate_tool/evaluate.py -------------------------------------------------------------------------------- /evaluate_tool/punctuation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/evaluate_tool/punctuation -------------------------------------------------------------------------------- /evaluate_tool/qid_answer_expand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/evaluate_tool/qid_answer_expand -------------------------------------------------------------------------------- /evaluate_tool/string_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/evaluate_tool/string_tool.py -------------------------------------------------------------------------------- /evaluate_tool/test_input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/evaluate_tool/test_input -------------------------------------------------------------------------------- /evaluate_tool/test_out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/evaluate_tool/test_out -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/requirements.txt -------------------------------------------------------------------------------- /word2vec_baike/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natureLanguageQing/radam_dgcnn_for_reading_comprehension/HEAD/word2vec_baike/README.md --------------------------------------------------------------------------------