├── LICENSE ├── code ├── .ipynb_checkpoints │ └── online-checkpoint.py ├── __pycache__ │ ├── baiduSpider.cpython-36.pyc │ ├── featQA.cpython-36.pyc │ ├── loader.cpython-36.pyc │ ├── lossQA.cpython-36.pyc │ ├── online_util.cpython-36.pyc │ ├── preQA.cpython-36.pyc │ ├── simQA.cpython-36.pyc │ ├── test.cpython-36.pyc │ ├── test2.cpython-36.pyc │ ├── train.cpython-36.pyc │ ├── train_loss.cpython-36.pyc │ └── util.cpython-36.pyc ├── baiduSpider.py ├── baselineQA.py ├── crf.py ├── loader.py ├── main.py ├── online_util.py ├── test.py ├── train.py ├── train_crf.py └── util.py ├── data ├── readme.txt ├── validation.ann.h5 └── vocabulary.txt ├── demo展示.mp4 ├── evaluation ├── datapoint.py ├── evaluate-tagging-result.py ├── evaluate-voting-result.py ├── evaluation_stats_util.py ├── example │ ├── raw_prediction_example.txt │ ├── refs │ │ ├── fuzzy-matching.ref │ │ ├── strict-matching.ref │ │ ├── vote-fuzzy-matching.ref │ │ └── vote-strict-matching.ref │ ├── run-example.sh │ └── test_file_example.json.gz ├── fuzzy_matching.py ├── ioutil.py ├── names.py ├── raw_result_parser.py ├── re_util.py ├── state_matcher.py ├── state_names.py ├── synsets.py ├── tagging_evaluation_util.py ├── tagging_util.py └── voter.py ├── model ├── charQA_2017-08-14 │ └── f1-0.5593_0.36519_2 └── test.crfsuite ├── online ├── Lawclf.py ├── __pycache__ │ ├── Lawclf.cpython-34.pyc │ ├── Lawclf.cpython-35.pyc │ ├── model_util.cpython-36.pyc │ ├── models.cpython-34.pyc │ ├── models.cpython-35.pyc │ ├── models.cpython-36.pyc │ ├── start_server_stable.cpython-34.pyc │ ├── util.cpython-34.pyc │ └── util.cpython-35.pyc ├── model_util.py ├── start_server_stable.py ├── static │ ├── css │ │ └── sticky-footer.css │ └── ipin-logo-gray-bg.png └── templates │ ├── base.html │ ├── foot.html │ ├── index.html │ └── main.html ├── readme.txt ├── webQA_data ├── readme.txt ├── validation.ann.json └── 数据集说明.md └── 基于阅读理解的QA综述.pdf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /code/.ipynb_checkpoints/online-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/.ipynb_checkpoints/online-checkpoint.py -------------------------------------------------------------------------------- /code/__pycache__/baiduSpider.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/__pycache__/baiduSpider.cpython-36.pyc -------------------------------------------------------------------------------- /code/__pycache__/featQA.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/__pycache__/featQA.cpython-36.pyc -------------------------------------------------------------------------------- /code/__pycache__/loader.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/__pycache__/loader.cpython-36.pyc -------------------------------------------------------------------------------- /code/__pycache__/lossQA.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/__pycache__/lossQA.cpython-36.pyc -------------------------------------------------------------------------------- /code/__pycache__/online_util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/__pycache__/online_util.cpython-36.pyc -------------------------------------------------------------------------------- /code/__pycache__/preQA.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/__pycache__/preQA.cpython-36.pyc -------------------------------------------------------------------------------- /code/__pycache__/simQA.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/__pycache__/simQA.cpython-36.pyc -------------------------------------------------------------------------------- /code/__pycache__/test.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/__pycache__/test.cpython-36.pyc -------------------------------------------------------------------------------- /code/__pycache__/test2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/__pycache__/test2.cpython-36.pyc -------------------------------------------------------------------------------- /code/__pycache__/train.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/__pycache__/train.cpython-36.pyc -------------------------------------------------------------------------------- /code/__pycache__/train_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/__pycache__/train_loss.cpython-36.pyc -------------------------------------------------------------------------------- /code/__pycache__/util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/__pycache__/util.cpython-36.pyc -------------------------------------------------------------------------------- /code/baiduSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/baiduSpider.py -------------------------------------------------------------------------------- /code/baselineQA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/baselineQA.py -------------------------------------------------------------------------------- /code/crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/crf.py -------------------------------------------------------------------------------- /code/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/loader.py -------------------------------------------------------------------------------- /code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/main.py -------------------------------------------------------------------------------- /code/online_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/online_util.py -------------------------------------------------------------------------------- /code/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/test.py -------------------------------------------------------------------------------- /code/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/train.py -------------------------------------------------------------------------------- /code/train_crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/train_crf.py -------------------------------------------------------------------------------- /code/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/code/util.py -------------------------------------------------------------------------------- /data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/data/readme.txt -------------------------------------------------------------------------------- /data/validation.ann.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/data/validation.ann.h5 -------------------------------------------------------------------------------- /data/vocabulary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/data/vocabulary.txt -------------------------------------------------------------------------------- /demo展示.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/demo展示.mp4 -------------------------------------------------------------------------------- /evaluation/datapoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/datapoint.py -------------------------------------------------------------------------------- /evaluation/evaluate-tagging-result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/evaluate-tagging-result.py -------------------------------------------------------------------------------- /evaluation/evaluate-voting-result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/evaluate-voting-result.py -------------------------------------------------------------------------------- /evaluation/evaluation_stats_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/evaluation_stats_util.py -------------------------------------------------------------------------------- /evaluation/example/raw_prediction_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/example/raw_prediction_example.txt -------------------------------------------------------------------------------- /evaluation/example/refs/fuzzy-matching.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/example/refs/fuzzy-matching.ref -------------------------------------------------------------------------------- /evaluation/example/refs/strict-matching.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/example/refs/strict-matching.ref -------------------------------------------------------------------------------- /evaluation/example/refs/vote-fuzzy-matching.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/example/refs/vote-fuzzy-matching.ref -------------------------------------------------------------------------------- /evaluation/example/refs/vote-strict-matching.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/example/refs/vote-strict-matching.ref -------------------------------------------------------------------------------- /evaluation/example/run-example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/example/run-example.sh -------------------------------------------------------------------------------- /evaluation/example/test_file_example.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/example/test_file_example.json.gz -------------------------------------------------------------------------------- /evaluation/fuzzy_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/fuzzy_matching.py -------------------------------------------------------------------------------- /evaluation/ioutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/ioutil.py -------------------------------------------------------------------------------- /evaluation/names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/names.py -------------------------------------------------------------------------------- /evaluation/raw_result_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/raw_result_parser.py -------------------------------------------------------------------------------- /evaluation/re_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/re_util.py -------------------------------------------------------------------------------- /evaluation/state_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/state_matcher.py -------------------------------------------------------------------------------- /evaluation/state_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/state_names.py -------------------------------------------------------------------------------- /evaluation/synsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/synsets.py -------------------------------------------------------------------------------- /evaluation/tagging_evaluation_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/tagging_evaluation_util.py -------------------------------------------------------------------------------- /evaluation/tagging_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/tagging_util.py -------------------------------------------------------------------------------- /evaluation/voter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/evaluation/voter.py -------------------------------------------------------------------------------- /model/charQA_2017-08-14/f1-0.5593_0.36519_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/model/charQA_2017-08-14/f1-0.5593_0.36519_2 -------------------------------------------------------------------------------- /model/test.crfsuite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/model/test.crfsuite -------------------------------------------------------------------------------- /online/Lawclf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/Lawclf.py -------------------------------------------------------------------------------- /online/__pycache__/Lawclf.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/__pycache__/Lawclf.cpython-34.pyc -------------------------------------------------------------------------------- /online/__pycache__/Lawclf.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/__pycache__/Lawclf.cpython-35.pyc -------------------------------------------------------------------------------- /online/__pycache__/model_util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/__pycache__/model_util.cpython-36.pyc -------------------------------------------------------------------------------- /online/__pycache__/models.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/__pycache__/models.cpython-34.pyc -------------------------------------------------------------------------------- /online/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /online/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /online/__pycache__/start_server_stable.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/__pycache__/start_server_stable.cpython-34.pyc -------------------------------------------------------------------------------- /online/__pycache__/util.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/__pycache__/util.cpython-34.pyc -------------------------------------------------------------------------------- /online/__pycache__/util.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/__pycache__/util.cpython-35.pyc -------------------------------------------------------------------------------- /online/model_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/model_util.py -------------------------------------------------------------------------------- /online/start_server_stable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/start_server_stable.py -------------------------------------------------------------------------------- /online/static/css/sticky-footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/static/css/sticky-footer.css -------------------------------------------------------------------------------- /online/static/ipin-logo-gray-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/static/ipin-logo-gray-bg.png -------------------------------------------------------------------------------- /online/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/templates/base.html -------------------------------------------------------------------------------- /online/templates/foot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/templates/foot.html -------------------------------------------------------------------------------- /online/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/templates/index.html -------------------------------------------------------------------------------- /online/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/online/templates/main.html -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/readme.txt -------------------------------------------------------------------------------- /webQA_data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/webQA_data/readme.txt -------------------------------------------------------------------------------- /webQA_data/validation.ann.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/webQA_data/validation.ann.json -------------------------------------------------------------------------------- /webQA_data/数据集说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/webQA_data/数据集说明.md -------------------------------------------------------------------------------- /基于阅读理解的QA综述.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susht3/webQA_sequence_labelling_pytorch/HEAD/基于阅读理解的QA综述.pdf --------------------------------------------------------------------------------