├── .gitignore ├── .idea └── inspectionProfiles │ └── Project_Default.xml ├── LICENSE ├── README.md ├── analysis ├── __init__.py ├── dataset_analysis.py ├── earl.py ├── nliwod.py ├── query_type_analysis.py └── treelstm_input_analysis.py ├── common ├── __init__.py ├── container │ ├── __init__.py │ ├── answer.py │ ├── answerrow.py │ ├── answerset.py │ ├── linkeditem.py │ ├── qapair.py │ ├── question.py │ ├── sparql.py │ ├── uri.py │ └── uris.py ├── graph │ ├── __init__.py │ ├── edge.py │ ├── graph.py │ ├── node.py │ ├── path.py │ └── paths.py ├── preprocessing │ ├── __init__.py │ ├── preprocessor.py │ └── wordhashing.py ├── query │ ├── __init__.py │ └── querybuilder.py └── utility │ ├── __init__.py │ ├── mylist.py │ ├── stats.py │ └── utility.py ├── config.py ├── data ├── LC-QUAD │ ├── SpotlightDump.json │ ├── data_v7.json │ ├── data_v8.json │ ├── linked.json │ ├── linked_answer4.json │ ├── linked_answer5.json │ ├── linked_answer6.json │ └── linked_spotlight.json └── WebQuestionsSP │ ├── WebQSP.test.json │ ├── WebQSP.test.partial.json │ ├── WebQSP.train.json │ └── WebQSP.train.partial.json ├── dependencies.txt ├── docker ├── Dockerfile └── requirements.txt ├── dssm.py ├── evaluate.py ├── images ├── lc_quad.png └── webq.png ├── kb ├── __init__.py ├── dbpedia.py ├── freebase.py └── kb.py ├── learning ├── __init__.py ├── classifier │ ├── __init__.py │ ├── classifier.py │ ├── naivebayesclassifier.py │ └── svmclassifier.py ├── lsa │ ├── __init__.py │ └── dssm.py ├── lstm │ ├── Constants.py │ ├── __init__.py │ ├── config.py │ ├── dataset.py │ ├── main.py │ ├── metrics.py │ ├── model.py │ ├── scripts │ │ ├── __init__.py │ │ └── preprocess-lcquad.py │ ├── trainer.py │ ├── utils.py │ └── vocab.py └── treelstm │ ├── Constants.py │ ├── __init__.py │ ├── config.py │ ├── dataset.py │ ├── fetch_and_preprocess.sh │ ├── lib │ ├── CollapseUnaryTransformer.java │ ├── ConstituencyParse.java │ └── DependencyParse.java │ ├── main.py │ ├── metrics.py │ ├── model.py │ ├── scripts │ ├── __init__.py │ ├── download.py │ ├── preprocess-webqsp.py │ └── preprocess_lcquad.py │ ├── trainer.py │ ├── tree.py │ ├── utils.py │ └── vocab.py ├── linker ├── __init__.py ├── earl.py ├── goldLinker.py └── relNliodRelTagMe.py ├── logging.json ├── main.py ├── orchestrator.py ├── output_analysis.py ├── parser ├── __init__.py ├── answerparser.py ├── lc_quad.py ├── lc_quad_linked.py ├── qald.py └── webqsp.py ├── query_gen.py ├── requirements.txt ├── scripts ├── __init__.py ├── create_blooms.py ├── fetch_lcquad_answer.py ├── generate_bloom.py ├── relnliodLogs.py └── remove_blacklist.py └── sqg_webserver.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/README.md -------------------------------------------------------------------------------- /analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/dataset_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/analysis/dataset_analysis.py -------------------------------------------------------------------------------- /analysis/earl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/analysis/earl.py -------------------------------------------------------------------------------- /analysis/nliwod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/analysis/nliwod.py -------------------------------------------------------------------------------- /analysis/query_type_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/analysis/query_type_analysis.py -------------------------------------------------------------------------------- /analysis/treelstm_input_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/analysis/treelstm_input_analysis.py -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/container/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/container/answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/container/answer.py -------------------------------------------------------------------------------- /common/container/answerrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/container/answerrow.py -------------------------------------------------------------------------------- /common/container/answerset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/container/answerset.py -------------------------------------------------------------------------------- /common/container/linkeditem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/container/linkeditem.py -------------------------------------------------------------------------------- /common/container/qapair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/container/qapair.py -------------------------------------------------------------------------------- /common/container/question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/container/question.py -------------------------------------------------------------------------------- /common/container/sparql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/container/sparql.py -------------------------------------------------------------------------------- /common/container/uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/container/uri.py -------------------------------------------------------------------------------- /common/container/uris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/container/uris.py -------------------------------------------------------------------------------- /common/graph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/graph/edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/graph/edge.py -------------------------------------------------------------------------------- /common/graph/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/graph/graph.py -------------------------------------------------------------------------------- /common/graph/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/graph/node.py -------------------------------------------------------------------------------- /common/graph/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/graph/path.py -------------------------------------------------------------------------------- /common/graph/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/graph/paths.py -------------------------------------------------------------------------------- /common/preprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/preprocessing/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/preprocessing/preprocessor.py -------------------------------------------------------------------------------- /common/preprocessing/wordhashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/preprocessing/wordhashing.py -------------------------------------------------------------------------------- /common/query/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/query/querybuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/query/querybuilder.py -------------------------------------------------------------------------------- /common/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/utility/mylist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/utility/mylist.py -------------------------------------------------------------------------------- /common/utility/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/utility/stats.py -------------------------------------------------------------------------------- /common/utility/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/common/utility/utility.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/config.py -------------------------------------------------------------------------------- /data/LC-QUAD/SpotlightDump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/data/LC-QUAD/SpotlightDump.json -------------------------------------------------------------------------------- /data/LC-QUAD/data_v7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/data/LC-QUAD/data_v7.json -------------------------------------------------------------------------------- /data/LC-QUAD/data_v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/data/LC-QUAD/data_v8.json -------------------------------------------------------------------------------- /data/LC-QUAD/linked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/data/LC-QUAD/linked.json -------------------------------------------------------------------------------- /data/LC-QUAD/linked_answer4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/data/LC-QUAD/linked_answer4.json -------------------------------------------------------------------------------- /data/LC-QUAD/linked_answer5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/data/LC-QUAD/linked_answer5.json -------------------------------------------------------------------------------- /data/LC-QUAD/linked_answer6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/data/LC-QUAD/linked_answer6.json -------------------------------------------------------------------------------- /data/LC-QUAD/linked_spotlight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/data/LC-QUAD/linked_spotlight.json -------------------------------------------------------------------------------- /data/WebQuestionsSP/WebQSP.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/data/WebQuestionsSP/WebQSP.test.json -------------------------------------------------------------------------------- /data/WebQuestionsSP/WebQSP.test.partial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/data/WebQuestionsSP/WebQSP.test.partial.json -------------------------------------------------------------------------------- /data/WebQuestionsSP/WebQSP.train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/data/WebQuestionsSP/WebQSP.train.json -------------------------------------------------------------------------------- /data/WebQuestionsSP/WebQSP.train.partial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/data/WebQuestionsSP/WebQSP.train.partial.json -------------------------------------------------------------------------------- /dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/dependencies.txt -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/docker/requirements.txt -------------------------------------------------------------------------------- /dssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/dssm.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/evaluate.py -------------------------------------------------------------------------------- /images/lc_quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/images/lc_quad.png -------------------------------------------------------------------------------- /images/webq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/images/webq.png -------------------------------------------------------------------------------- /kb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kb/dbpedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/kb/dbpedia.py -------------------------------------------------------------------------------- /kb/freebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/kb/freebase.py -------------------------------------------------------------------------------- /kb/kb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/kb/kb.py -------------------------------------------------------------------------------- /learning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /learning/classifier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /learning/classifier/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/classifier/classifier.py -------------------------------------------------------------------------------- /learning/classifier/naivebayesclassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/classifier/naivebayesclassifier.py -------------------------------------------------------------------------------- /learning/classifier/svmclassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/classifier/svmclassifier.py -------------------------------------------------------------------------------- /learning/lsa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /learning/lsa/dssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/lsa/dssm.py -------------------------------------------------------------------------------- /learning/lstm/Constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/lstm/Constants.py -------------------------------------------------------------------------------- /learning/lstm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /learning/lstm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/lstm/config.py -------------------------------------------------------------------------------- /learning/lstm/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/lstm/dataset.py -------------------------------------------------------------------------------- /learning/lstm/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/lstm/main.py -------------------------------------------------------------------------------- /learning/lstm/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/lstm/metrics.py -------------------------------------------------------------------------------- /learning/lstm/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/lstm/model.py -------------------------------------------------------------------------------- /learning/lstm/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /learning/lstm/scripts/preprocess-lcquad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/lstm/scripts/preprocess-lcquad.py -------------------------------------------------------------------------------- /learning/lstm/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/lstm/trainer.py -------------------------------------------------------------------------------- /learning/lstm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/lstm/utils.py -------------------------------------------------------------------------------- /learning/lstm/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/lstm/vocab.py -------------------------------------------------------------------------------- /learning/treelstm/Constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/Constants.py -------------------------------------------------------------------------------- /learning/treelstm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /learning/treelstm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/config.py -------------------------------------------------------------------------------- /learning/treelstm/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/dataset.py -------------------------------------------------------------------------------- /learning/treelstm/fetch_and_preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/fetch_and_preprocess.sh -------------------------------------------------------------------------------- /learning/treelstm/lib/CollapseUnaryTransformer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/lib/CollapseUnaryTransformer.java -------------------------------------------------------------------------------- /learning/treelstm/lib/ConstituencyParse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/lib/ConstituencyParse.java -------------------------------------------------------------------------------- /learning/treelstm/lib/DependencyParse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/lib/DependencyParse.java -------------------------------------------------------------------------------- /learning/treelstm/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/main.py -------------------------------------------------------------------------------- /learning/treelstm/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/metrics.py -------------------------------------------------------------------------------- /learning/treelstm/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/model.py -------------------------------------------------------------------------------- /learning/treelstm/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /learning/treelstm/scripts/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/scripts/download.py -------------------------------------------------------------------------------- /learning/treelstm/scripts/preprocess-webqsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/scripts/preprocess-webqsp.py -------------------------------------------------------------------------------- /learning/treelstm/scripts/preprocess_lcquad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/scripts/preprocess_lcquad.py -------------------------------------------------------------------------------- /learning/treelstm/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/trainer.py -------------------------------------------------------------------------------- /learning/treelstm/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/tree.py -------------------------------------------------------------------------------- /learning/treelstm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/utils.py -------------------------------------------------------------------------------- /learning/treelstm/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/learning/treelstm/vocab.py -------------------------------------------------------------------------------- /linker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linker/earl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/linker/earl.py -------------------------------------------------------------------------------- /linker/goldLinker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/linker/goldLinker.py -------------------------------------------------------------------------------- /linker/relNliodRelTagMe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/linker/relNliodRelTagMe.py -------------------------------------------------------------------------------- /logging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/logging.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/main.py -------------------------------------------------------------------------------- /orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/orchestrator.py -------------------------------------------------------------------------------- /output_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/output_analysis.py -------------------------------------------------------------------------------- /parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parser/answerparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/parser/answerparser.py -------------------------------------------------------------------------------- /parser/lc_quad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/parser/lc_quad.py -------------------------------------------------------------------------------- /parser/lc_quad_linked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/parser/lc_quad_linked.py -------------------------------------------------------------------------------- /parser/qald.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/parser/qald.py -------------------------------------------------------------------------------- /parser/webqsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/parser/webqsp.py -------------------------------------------------------------------------------- /query_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/query_gen.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/create_blooms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/scripts/create_blooms.py -------------------------------------------------------------------------------- /scripts/fetch_lcquad_answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/scripts/fetch_lcquad_answer.py -------------------------------------------------------------------------------- /scripts/generate_bloom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/scripts/generate_bloom.py -------------------------------------------------------------------------------- /scripts/relnliodLogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/scripts/relnliodLogs.py -------------------------------------------------------------------------------- /scripts/remove_blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/scripts/remove_blacklist.py -------------------------------------------------------------------------------- /sqg_webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskNowQA/SQG/HEAD/sqg_webserver.py --------------------------------------------------------------------------------