Neural semantic parsing, reproduced from Jiang’ work and support to Lambda DCS is implemented.
This project is aiming at the NLP task knowledge-base question answering (KB-QA). The main reference paper is:
@inproceedings{jp2017scanner,
author = {Jianpeng Cheng and Siva Reddy and Vijay Saraswat and Mirella Lapata},
booktitle = {ACL},
title = {Learning Structured Natural Language Representations for Semantic Parsing},
year = {2017},
}
The model is transition-based, and the detailed Chinese explaination of this paper can be found in the file “Learning Structured Natural Language Representations for Semantic Parsing Jianpeng Cheng 阅后总结”.
The original paper only support FunQL logic expression (corresponding to the folder ./nsp), and this project makes extension on it, with Lambda DCS supported. The main technical challenge is transforming the Lambda-DCS parses into action types, and redesigning the corresponding action content.
One can directly run the main.py with python to train and test. If wanting testing only, the --train
param should be omiited.
Train and test for nsp:
cd nkbqa
cd nsp
python main.py --train True
Train and test for nsp_lambda:
cd nkbqa
cd nsp_lambda
python main.py --train True
NOTICE please ensure that only English in the absolute path str, or else the error UnicodeDecodeError
will be raised.
For nsp, the metric is accuracy. After 100 epoches, acc. will be 72%
For nsp_lambda, the metric is accuracy in terms of structure matching, since without grounding. After 200 epoches, this acc. will be 57%.