tgrep2 Searching for NLTK Trees
Project description
TGrep search implementation for NTLK trees.
Copyright (c) 16 March, 2013 Will Roberts <wildwilhelm@gmail.com>.
Licensed under the MIT License (see source file tgrep.py for details).
This module supports TGrep2 syntax for matching parts of NLTK Trees. Note that many tgrep operators implemented here require the tree passed to be a ParentedTree.
Tgrep tutorial: http://www.stanford.edu/dept/linguistics/corpora/cas-tut-tgrep.html
Tgrep2 manual: http://tedlab.mit.edu/~dr/Tgrep2/tgrep2.pdf
Tgrep2 source: http://tedlab.mit.edu/~dr/Tgrep2/
Requirements:
Python 2.6 or better, or Python 3.2 or better
future (for Python 2)
NLTK, version 3.0.0 or better
pyparsing
$ sudo pip install nltk_tgrep
Usage:
>>> from nltk.tree import ParentedTree >>> import nltk_tgrep >>> tree = ParentedTree.fromstring('(S (NP (DT the) (JJ big) (NN dog)) (VP bit) (NP (DT a) (NN cat)))') >>> nltk_tgrep.tgrep_nodes(tree, 'NN') [ParentedTree('NN', ['dog']), ParentedTree('NN', ['cat'])] >>> nltk_tgrep.tgrep_positions(tree, 'NN') [(0, 2), (2, 1)] >>> nltk_tgrep.tgrep_nodes(tree, 'DT') [ParentedTree('DT', ['the']), ParentedTree('DT', ['a'])] >>> nltk_tgrep.tgrep_nodes(tree, 'DT $ JJ') [ParentedTree('DT', ['the'])]
This implementation adds syntax to select nodes based on their NLTK tree position. This syntax is N plus a Python tuple representing the tree position. For instance, N(), N(0,), N(0,0) are valid node selectors. Example:
>>> tree = ParentedTree.fromstring('(S (NP (DT the) (JJ big) (NN dog)) (VP bit) (NP (DT a) (NN cat)))') >>> tree[0,0] ParentedTree('DT', ['the']) >>> tree[0,0].treeposition() (0, 0) >>> nltk_tgrep.tgrep_nodes(tree, 'N(0,0)') [ParentedTree('DT', ['the'])]
Caveats:
Link modifiers: “?” and “=” are not implemented.
Tgrep compatibility: Using “@” for “!”, “{” for “<”, “}” for “>” are not implemented.
The “=” and “~” links are not implemented.
Known Issues:
There are some issues with link relations involving leaf nodes (which are represented as bare strings in NLTK trees). For instance, consider the tree:
(S (A x))
The search string * !>> S should select all nodes which are not dominated in some way by an S node (i.e., all nodes which are not descendants of an S). Clearly, in this tree, the only node which fulfills this criterion is the top node (since it is not dominated by anything). However, the code here will find both the top node and the leaf node x. This is because we cannot recover the parent of the leaf, since it is stored as a bare string.
A possible workaround, when performing this kind of search, would be to filter out all leaf nodes.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file nltk_tgrep-1.0.6.tar.gz
.
File metadata
- Download URL: nltk_tgrep-1.0.6.tar.gz
- Upload date:
- Size: 16.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 516cd367f9a679609bd1c92840c50216aec8b8f60e5aafa68fb9a54b1463e8fb |
|
MD5 | 744dcc84dd128d0d41f288fe538daa6e |
|
BLAKE2b-256 | 6236f0f0d6adafad35b1463a7fcade050e963bf221e3f249d16e96f79007e037 |
File details
Details for the file nltk_tgrep-1.0.6-py3-none-any.whl
.
File metadata
- Download URL: nltk_tgrep-1.0.6-py3-none-any.whl
- Upload date:
- Size: 18.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f946c780550d5a801c3e6d7278cee878d0a43153bf43070d87371f9b876eeed |
|
MD5 | 5211b62007495c24ea77273ecdc3e475 |
|
BLAKE2b-256 | 20363f69546f68f3f820fa186f859e8e13742d5fe24be3e7796464384cfe3590 |
File details
Details for the file nltk_tgrep-1.0.6-py2-none-any.whl
.
File metadata
- Download URL: nltk_tgrep-1.0.6-py2-none-any.whl
- Upload date:
- Size: 18.8 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c22f3e2e6262e2312382097ee8d91d853f33a61d2a55cd40ffed997534b0ce6 |
|
MD5 | 1a11d80e443451a98ac126331b12a1c5 |
|
BLAKE2b-256 | 89dc1787ccf705662482c6a8704bc02df3d538bd9e2beae8e0386a7824cccc91 |