Skip to content

MaxwellRebo/disco-dop

 
 

Repository files navigation

Discontinuous DOP

contrived discontinuous constituent for expository purposes.

The aim of this project is to parse discontinuous constituents in natural language using Data-Oriented Parsing (DOP), with a focus on global world domination. The grammar is extracted from a treebank of sentences annotated with (discontinuous) phrase-structure trees. Concretely, this project provides a statistical constituency parser with support for discontinuous constituents and Data-Oriented Parsing. Discontinuous constituents are supported through the grammar formalism Linear Context-Free Rewriting System (LCFRS), which is a generalization of Probabilistic Context-Free Grammar (PCFG). Data-Oriented Parsing allows re-use of arbitrary-sized fragments from previously seen sentences using Tree-Substitution Grammar (TSG).

General statistical parsing:

  • grammar formalisms: PCFG, PLCFRS
  • extract treebank grammar: trees decomposed into productions, relative frequencies as probabilities
  • exact k-best list of derivations
  • coarse-to-fine pruning: posterior threshold, k-best coarse-to-fine

DOP specific (parsing with tree fragments):

  • implementations: Goodman's DOP reduction, Double-DOP, DOP1.
  • estimators: relative frequency estimate (RFE), equal weights estimate (EWE).
  • objective functions: most probable parse (MPP), most probable derivation (MPD), most probable shortest derivation (MPSD), most likely tree with shortest derivation (SL-DOP).
  • marginalization: n-best derivations, sampled derivations.

screenshot of parse tree produced by parser

Requirements:

Python 2.7 is supported, but Python 3 is recommended.

To compile the latest development version on an Ubuntu system, run the following sequence of commands:

sudo apt-get install build-essential python3-dev python3-numpy python3-pip git
git clone --depth 1 git://github.com/andreasvc/disco-dop.git
cd disco-dop
pip3 install --user -r requirements.txt
make install

The --user option means the packages will be installed to your home directory which does not require root privileges. Make sure that ~/.local/bin directory is in your PATH, or add it as follows:

echo export PATH=$HOME/.local/bin:$PATH >> ~/.bashrc

This assumes no root access, but assumes that gcc is installed.

Set environment variables so that software can be installed to the home directory (replace with equivalent for your shell if you do not use bash):

mkdir -p ~/.local
echo export PATH=$HOME/.local/bin:$PATH >> ~/.bashrc
echo export LD_LIBRARY_PATH=$HOME/.local/lib:/usr/lib64:/usr/lib >>~/.bashrc
echo export PYTHONIOENCODING="utf-8" >>~/.bashrc

After this, re-login or restart the shell to activate these settings. Install Python 3.4 from source, if not installed already. Python may require some libraries such as zlib and readline; installation steps are similar to the ones below:

wget http://www.python.org/ftp/python/3.5.1/Python-3.5.1.tgz
tar -xzf Python-*.tgz
cd Python-*
./configure --prefix=$HOME/.local --enable-shared
make install && cd ..

Check by running python3 that version 3.5.1 was installed successfully and is the default.

Install the latest development version of discodop:

wget https://github.com/andreasvc/disco-dop/archive/master.zip
unzip disco-dop-master.zip
cd disco-dop-master
pip install --user -r requirements.txt
make install
  • Install Xcode and Homebrew

  • Install dependencies using Homebrew:

    brew install gcc python3 git
    git clone --depth 1 git://github.com/andreasvc/disco-dop.git
    cd disco-dop
    sudo pip3 install -r requirements.txt
    env CC=gcc sudo python setup.py install
    sudo make
    

If you do not run Linux, it is possible to run the code inside a virtual machine. To do that, install Virtualbox and download the virtual machine imagine with disco-dop pre-installed: http://illc-lil0.science.uva.nl/VMs/discodop-vboximage.zip

A manual page for the discodop command is installed as part of the installation: man discodop. Further documentation can be found at http://discodop.readthedocs.org To generate a local copy see the docs/README file.

Cf. https://staff.fnwi.uva.nl/a.w.vancranenburgh/grammars/

The English, German, and Dutch grammars are described in a forthcoming paper (van Cranenburgh et al., to appear); the French grammar appears in Sangati & van Cranenburgh (2015). For comparison, there is also an English grammar without discontinuous constituents (ptb-nodisc).

The Tree data structures in tree.py and the simple binarization algorithm in treetransforms.py was taken from NLTK. The Zhang-Shasha tree-edit distance algorithm in treedist.py was taken from https://github.com/timtadh/zhang-shasha Elements of the PLCFRS parser and punctuation re-attachment are based on code from rparse. Various other bits from the Stanford parser, Berkeley parser, Bubs parser, &c.

This work is partly described in the following publications:

About

Discontinuous Data-Oriented Parsing

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 95.5%
  • HTML 3.0%
  • JavaScript 0.6%
  • C 0.5%
  • Makefile 0.3%
  • C++ 0.1%