- Notifications
You must be signed in to change notification settings - Fork62
Provide Semantic Parsing solutions and Natural Language Inferences for multiple languages following the idea of the syntax-semantics interface.
License
mynlp/ccg2lambda
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This is a tool to derive formal semantic representations ofnatural language sentences given CCG derivation trees and semantic templates.
If you can use Docker,this Docker image is highly recommended.
docker pull masashiy/ccg2lambda
The installation guide below and our Dockerfile are not maintained now.
In order to run most part of this software, it is necessary to install python3,nltk 3, lxml, simplejson and yaml python libraries. I recommend to use a python virtual environment,and install the packages in the virtual environment withpip:
sudo apt-get install python3-devsudo apt-get install python-virtualenvsudo apt-get install libxml2-dev libxslt1-devgit clone https://github.com/mynlp/ccg2lambda.gitcd ccg2lambdavirtualenv --no-site-packages --distribute -p /usr/bin/python3 py3source py3/bin/activatepip install lxml simplejson pyyaml -I nltk==3.0.5
You also need to install WordNet:
python -c"import nltk; nltk.download('wordnet')"To ensure that all software is working as expected, you can run the tests:
python scripts/run_tests.py
(all tests should pass, except a few expected failures).
You also need to install theCoq Proof Assistant that we use for automated reasoning. In Ubuntu, you can install it by:
sudo apt-get install coq
Then, compile the coq library that contains the axioms:
coqc coqlib.v
Our system assigns semantics to CCG structures. At the moment, we support C&C for English, and Jigg for Japanese.
InstallingC&C parser (for English)
You can download and install the C&C syntactic parser by running the following scriptfrom the ccg2lambda directory:
./en/install_candc.sh
If that fails, you may succeed by followingthese alternative instructions, in which case you need to manually create a fileen/candc_location.txt with the path to the C&C parser:
echo"/path/to/candc-1.00/"> en/candc_location.txt
InstallingJigg parser (for Japanese)
Simply do:
./ja/download_dependencies.sh
The command above will download Jigg, its models, and create the fileja/jigg_location.txt where the path to Jigg is specified. That is all.
Let's assume that we have a filesentences.txt with one sentence per line,and that we want to semantic parse those sentences. Here is the content ofmy file:
All women ordered coffee or tea.Some woman did not order coffee.Some woman ordered tea.And we want to obtain a symbolic semantic representation such as:
forall x. (woman(x) -> exists y. ((tea(y) \/ coffee(y)) /\ order(x, y)))exists x. (woman(x) /\ -exists y. (cofee(y) /\ order(x, y)))exists x. (woman(x) /\ exists y. (tea(y) /\ order(x, y)))First we need to obtain the CCG derivations (parse trees) of the sentencesin the text file using C&C and convert its XML format into Jigg's XML format:
cat sentences.txt| sed -f en/tokenizer.sed> sentences.tok/path/to/candc-1.00/bin/candc --models /path/to/candc-1.00/models --candc-printer xml --input sentences.tok> sentences.candc.xmlpython en/candc2transccg.py sentences.candc.xml> sentences.xml
Then, we are ready to obtain the semantic representations by using semantictemplates and the CCG derivations obtained above:
python scripts/semparse.py sentences.xml en/semantic_templates_en_emnlp2015.yaml sentences.sem.xml
The semantic representations are in thesentences.sem.xml file,where a new XML node<semantics> has been added with as many child nodesas the CCG structure. Each semantic span has the logical representationobtained up to that span. The root span has the logical representationof the whole sentence. Here there is an excerpt of the semantics XML nodeof the last sentence:
<semanticsstatus="success"root="s2_sp0"> <spanid="s2_sp0"child="s2_sp1 s2_sp9"sem="exists x.(_woman(x)& TrueP& exists z4.(_tea(z4)& TrueP& _order(x,z4)))"/> <spanid="s2_sp1"child="s2_sp2 s2_sp5"sem="exists x.(_woman(x)& TrueP& exists z4.(_tea(z4)& TrueP& _order(x,z4)))"/> <spanid="s2_sp2"child="s2_sp3 s2_sp4"sem="\F2 F3.exists x.(_woman(x)& F2(x)& F3(x))"/> <spanid="s2_sp3"sem="\F1 F2 F3.exists x.(F1(x)& F2(x)& F3(x))"/> <spanid="s2_sp4"sem="\x._woman(x)"type="_woman : Entity -> Prop"/> <spanid="s2_sp5"child="s2_sp6 s2_sp7"sem="\Q2.Q2(\w.TrueP,\x.exists z4.(_tea(z4)& TrueP& _order(x,z4)))"/> <spanid="s2_sp6"sem="\Q1 Q2.Q2(\w.TrueP,\x.Q1(\w.TrueP,\y._order(x,y)))"type="_order : Entity -> Entity -> Prop"/> <spanid="s2_sp7"child="s2_sp8"sem="\F1 F2.exists x.(_tea(x)& F1(x)& F2(x))"/> <spanid="s2_sp8"sem="\x._tea(x)"type="_tea : Entity -> Prop"/> <spanid="s2_sp9"sem="\X.X"/></semantics>
Thesem attribute contains the logical formulas, and thetype attributesthe types of the predicates (types only appear at the leaves).
We believe that the semantic representations above can be usedfor several NLP tasks. We have been using them so farfor recognizing textual entailment. For this purpose,we assume that all sentences in the file are premises,except the last one, which is the conclusion.
To build a theorem out of those logical representations,pipe it to a theorem prover (Coq) and judge the entailmentrelation, you can run the following command:
python scripts/prove.py sentences.sem.xml --graph_out graphdebug.html
That command will outputyes (entailment relation - the conclusioncan be proved given the premises),no (contradiction - the negatedconclusion can be proved),unknown (otherwise).
If the parsing process and theorem proving succeeded,graphdebug.html will have a graphical representationof the CCG trees, augmented with logical formulas atevery node below the syntactic category. The scriptthat pipes the theorem to Coq is also displayed atthe bottom. If the semantic parsing or prover fails,graphdebug.html may contain plain debugging information(e.g. python error messages, etc.). Here is thegraphdebug.htmlof the example above:
It is also possible to visualize CCG trees, either beforeor after augmenting them with semantic representations.For example, to visualize the CCG trees only (withoutsemantic representations):
python scripts/visualize.py sentences.xml> sentences.htmland then open the filesentences.html with your favourite web browser.You should be able to see something like this:
If you wish to reproduce our reported results, please follow the instructions below:
- Experiments on FraCaS at EMNLP 2015
- Experiments on JSeM at EMNLP 2016
- Experiments on SICK at EACL 2017
- Experiments on STS for SICK and MSRvid at EMNLP 2017
- Experiments on SICK at NAACL-HLT 2018
You can find one of our semantic templates inen/semantic_templates_en.yaml. Here are some notes:
- Each Yaml block is a rule. If the rule matches the attributes of a CCG node, then the semantic template specified by "semantics" is applied. It is possible to write an arbitrary set of field names and their values. For example, you could specify the "category" of the CCG node and the surface "surf" form of a word (in case the CCG node is a leaf). Only the "category" field and the "semantics" field are compulsory.
- If you underspecify the characteristics of a CCG node, the semantic rule will match more general CCG nodes. It is also possible to underspecify the features of syntactic categories.
- If more than one rule applies, only the last one in the file will be applied.
- Any CCG node can be matched by the semantic rules.
- If the rule matches a CCG leaf node, then the base form (or surface form, if base not present) will be passed as the first argument to the lambda expression of the semantic template (specified by "semantics" field in Yaml rule).
- If the rule matches a CCG node with only one child, then the semantic expression of the child will be passed as the first argument to the semantic template assigned to this CCG node.
- If the rule matches a CCG node with two children, then the semantic expressions of the left and right children will be passed as the first and second argument to the semantic template of this CCG node, respectively.
- Rules that are intended to match inner nodes of the CCG derivation need to specify either:
- A "rule" attribute, specifying what type of combination operation is there.
- A "child" attribute, specifying at least one attribute of one child (see next point).
- You can specify in a semantic rule the characteristics of the children at the current CCG node. To that purpose, simply prefix the attribute name with "child0_" or "child1_" of the left or right child, respectively. E.g. if you want to specify the syntactic category of the left child, then you call such attribute in the semantic rule as "child0_category". You can still underspecify the attributes of the children. If the CCG node only has one child, then it is considered a left child (and its attributes are specified using "child0_" as a prefix).
If you use this software or the semantic templates for your work, please consider citing it.
- Pascual Martínez-Gómez, Koji Mineshima, Yusuke Miyao, Daisuke Bekki. ccg2lambda: A Compositional Semantics System. Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics - System Demonstrations, pages 85–90, Berlin, Germany, August 7-12, 2016.pdf
@InProceedings{pascual-EtAl:2016:ACL-2016-System-Demonstrations, author = {Mart\'{i}nez-G\'{o}mez, Pascual and Mineshima, Koji and Miyao, Yusuke and Bekki, Daisuke}, title = {ccg2lambda: A Compositional Semantics System}, booktitle = {Proceedings of ACL 2016 System Demonstrations}, month = {August}, year = {2016}, address = {Berlin, Germany}, publisher = {Association for Computational Linguistics}, pages = {85--90}, url = {https://aclweb.org/anthology/P/P16/P16-4015.pdf}}- Hitomi Yanaka, Koji Mineshima, Pascual Martínez-Gómez and Daisuke Bekki. Acquisition of Phrase Correspondences using Natural Deduction Proofs. Proceedings of 16th Annual Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, New Orleans, Louisiana, 1-6 June 2018.arXiv
@InProceedings{yanaka-EtAl:2018:NAACL-HLT, author = {Yanaka, Hitomi and Mineshima, Koji and Mart\'{i}nez-G\'{o}mez, Pascual and Bekki, Daisuke}, title = {Acquisition of Phrase Correspondences using Natural Deduction Proofs}, booktitle = {Proceedings of 16th Annual Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies}, month = {June}, year = {2018}, address = {New Orleans, Louisiana}, publisher = {Association for Computational Linguistics},}- Hitomi Yanaka, Koji Mineshima, Pascual Martínez-Gómez and Daisuke Bekki. Determining Semantic Textual Similarity using Natural Deduction Proofs. Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing, Copenhagen, Denmark, 7-11 September 2017.arXiv
@InProceedings{yanaka-EtAl:2017:EMNLP, author = {Yanaka, Hitomi and Mineshima, Koji and Mart\'{i}nez-G\'{o}mez, Pascual and Bekki, Daisuke}, title = {Determining Semantic Textual Similarity using Natural Deduction Proofs}, booktitle = {Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing}, month = {September}, year = {2017}, address = {Copenhagen, Denmark}, publisher = {Association for Computational Linguistics},}- Pascual Martínez-Gómez, Koji Mineshima, Yusuke Miyao, Daisuke Bekki. On-demand Injection of Lexical Knowledge for Recognising Textual Entailment. Proceedings of the 15th Conference of the European Chapter of the Association for Computational Linguistics, pages 710-720, Valencia, Spain, 3-7 April, 2017.pdf
@InProceedings{martinezgomez-EtAl:2017:EACLlong, author = {Mart\'{i}nez-G\'{o}mez, Pascual and Mineshima, Koji and Miyao, Yusuke and Bekki, Daisuke}, title = {On-demand Injection of Lexical Knowledge for Recognising Textual Entailment}, booktitle = {Proceedings of the 15th Conference of the European Chapter of the Association for Computational Linguistics: Volume 1, Long Papers}, month = {April}, year = {2017}, address = {Valencia, Spain}, publisher = {Association for Computational Linguistics}, pages = {710--720}, url = {http://www.aclweb.org/anthology/E17-1067}}- Koji Mineshima, Pascual Martínez-Gómez, Yusuke Miyao, Daisuke Bekki. Higher-order logical inference with compositional semantics. Proceedings of the 2015 Conference on Empirical Methods in Natural Language Processing, pages 2055–2061, Lisbon, Portugal, 17-21 September 2015.pdf
@InProceedings{mineshima-EtAl:2015:EMNLP, author = {Mineshima, Koji and Mart\'{i}nez-G\'{o}mez, Pascual and Miyao, Yusuke and Bekki, Daisuke}, title = {Higher-order logical inference with compositional semantics}, booktitle = {Proceedings of the 2015 Conference on Empirical Methods in Natural Language Processing}, month = {September}, year = {2015}, address = {Lisbon, Portugal}, publisher = {Association for Computational Linguistics}, pages = {2055--2061}, url = {http://aclweb.org/anthology/D15-1244}}- Koji Mineshima, Ribeka Tanaka, Pascual Martínez-Gómez, Yusuke Miyao, Daisuke Bekki. Building compositional semantics and higher-order inference system for wide-coverage Japanese CCG parsers. Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing, pages 2236-2242, Austin, Texas, 1-5 November 2016.pdf
@InProceedings{D16-1242, author = "Mineshima, Kojiand Tanaka, Ribekaand Mart{\'i}nez-G{\'o}mez, Pascualand Miyao, Yusukeand Bekki, Daisuke", title = "Building compositional semantics and higher-order inference system for a wide-coverage {J}apanese {CCG} parser", booktitle = "Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing", year = "2016", publisher = "Association for Computational Linguistics", pages = "2236--2242", location = "Austin, Texas", url = "http://aclweb.org/anthology/D16-1242"}About
Provide Semantic Parsing solutions and Natural Language Inferences for multiple languages following the idea of the syntax-semantics interface.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.

