nltk.chunk.regexp module

class nltk.chunk.regexp.ChunkRule[source]

Bases: RegexpChunkRule

A rule specifying how to add chunks to a ChunkString, using a matching tag pattern. When applied to a ChunkString, it will find any substring that matches this tag pattern and that is not already part of a chunk, and create a new chunk containing that substring.

__init__(tag_pattern, descr)[source]

Construct a new ChunkRule.

Parameters
  • tag_pattern (str) – This rule’s tag pattern. When applied to a ChunkString, this rule will chunk any substring that matches this tag pattern and that is not already part of a chunk.

  • descr (str) – A short description of the purpose and/or effect of this rule.

class nltk.chunk.regexp.ChunkRuleWithContext[source]

Bases: RegexpChunkRule

A rule specifying how to add chunks to a ChunkString, using three matching tag patterns: one for the left context, one for the chunk, and one for the right context. When applied to a ChunkString, it will find any substring that matches the chunk tag pattern, is surrounded by substrings that match the two context patterns, and is not already part of a chunk; and create a new chunk containing the substring that matched the chunk tag pattern.

Caveat: Both the left and right context are consumed when this rule matches; therefore, if you need to find overlapping matches, you will need to apply your rule more than once.

__init__(left_context_tag_pattern, chunk_tag_pattern, right_context_tag_pattern, descr)[source]

Construct a new ChunkRuleWithContext.

Parameters
  • left_context_tag_pattern (str) – A tag pattern that must match the left context of chunk_tag_pattern for this rule to apply.

  • chunk_tag_pattern (str) – A tag pattern that must match for this rule to apply. If the rule does apply, then this pattern also identifies the substring that will be made into a chunk.

  • right_context_tag_pattern (str) – A tag pattern that must match the right context of chunk_tag_pattern for this rule to apply.

  • descr (str) – A short description of the purpose and/or effect of this rule.

class nltk.chunk.regexp.ChunkString[source]

Bases: object

A string-based encoding of a particular chunking of a text. Internally, the ChunkString class uses a single string to encode the chunking of the input text. This string contains a sequence of angle-bracket delimited tags, with chunking indicated by braces. An example of this encoding is:

{<DT><JJ><NN>}<VBN><IN>{<DT><NN>}<.>{<DT><NN>}<VBD><.>

ChunkString are created from tagged texts (i.e., lists of tokens whose type is TaggedType). Initially, nothing is chunked.

The chunking of a ChunkString can be modified with the xform() method, which uses a regular expression to transform the string representation. These transformations should only add and remove braces; they should not modify the sequence of angle-bracket delimited tags.

Variables
  • _str

    The internal string representation of the text’s encoding. This string representation contains a sequence of angle-bracket delimited tags, with chunking indicated by braces. An example of this encoding is:

    {<DT><JJ><NN>}<VBN><IN>{<DT><NN>}<.>{<DT><NN>}<VBD><.>
    

  • _pieces – The tagged tokens and chunks encoded by this ChunkString.

  • _debug – The debug level. See the constructor docs.

  • IN_CHUNK_PATTERN – A zero-width regexp pattern string that will only match positions that are in chunks.

  • IN_STRIP_PATTERN – A zero-width regexp pattern string that will only match positions that are in strips.

CHUNK_TAG = '(<[^\\{\\}<>]+?>)'
CHUNK_TAG_CHAR = '[^\\{\\}<>]'
IN_CHUNK_PATTERN = '(?=[^\\{]*\\})'
IN_STRIP_PATTERN = '(?=[^\\}]*(\\{|$))'
__init__(chunk_struct, debug_level=1)[source]

Construct a new ChunkString that encodes the chunking of the text tagged_tokens.

Parameters
  • chunk_struct (Tree) – The chunk structure to be further chunked.

  • debug_level (int) –

    The level of debugging which should be applied to transformations on the ChunkString. The valid levels are:

    • 0: no checks

    • 1: full check on to_chunkstruct

    • 2: full check on to_chunkstruct and cursory check after each transformation.

    • 3: full check on to_chunkstruct and full check after each transformation.

    We recommend you use at least level 1. You should probably use level 3 if you use any non-standard subclasses of RegexpChunkRule.

to_chunkstruct(chunk_label='CHUNK')[source]

Return the chunk structure encoded by this ChunkString.

Return type

Tree

Raises

ValueError – If a transformation has generated an invalid chunkstring.

xform(regexp, repl)[source]

Apply the given transformation to the string encoding of this ChunkString. In particular, find all occurrences that match regexp, and replace them using repl (as done by re.sub).

This transformation should only add and remove braces; it should not modify the sequence of angle-bracket delimited tags. Furthermore, this transformation may not result in improper bracketing. Note, in particular, that bracketing may not be nested.

Parameters
  • regexp (str or regexp) – A regular expression matching the substring that should be replaced. This will typically include a named group, which can be used by repl.

  • repl (str) – An expression specifying what should replace the matched substring. Typically, this will include a named replacement group, specified by regexp.

Return type

None

Raises

ValueError – If this transformation generated an invalid chunkstring.

class nltk.chunk.regexp.ExpandLeftRule[source]

Bases: RegexpChunkRule

A rule specifying how to expand chunks in a ChunkString to the left, using two matching tag patterns: a left pattern, and a right pattern. When applied to a ChunkString, it will find any chunk whose beginning matches right pattern, and immediately preceded by a strip whose end matches left pattern. It will then expand the chunk to incorporate the new material on the left.

__init__(left_tag_pattern, right_tag_pattern, descr)[source]

Construct a new ExpandRightRule.

Parameters
  • right_tag_pattern (str) – This rule’s right tag pattern. When applied to a ChunkString, this rule will find any chunk whose beginning matches right_tag_pattern, and immediately preceded by a strip whose end matches this pattern. It will then merge those two chunks into a single chunk.

  • left_tag_pattern (str) – This rule’s left tag pattern. When applied to a ChunkString, this rule will find any chunk whose beginning matches this pattern, and immediately preceded by a strip whose end matches left_tag_pattern. It will then expand the chunk to incorporate the new material on the left.

  • descr (str) – A short description of the purpose and/or effect of this rule.

class nltk.chunk.regexp.ExpandRightRule[source]

Bases: RegexpChunkRule

A rule specifying how to expand chunks in a ChunkString to the right, using two matching tag patterns: a left pattern, and a right pattern. When applied to a ChunkString, it will find any chunk whose end matches left pattern, and immediately followed by a strip whose beginning matches right pattern. It will then expand the chunk to incorporate the new material on the right.

__init__(left_tag_pattern, right_tag_pattern, descr)[source]

Construct a new ExpandRightRule.

Parameters
  • right_tag_pattern (str) – This rule’s right tag pattern. When applied to a ChunkString, this rule will find any chunk whose end matches left_tag_pattern, and immediately followed by a strip whose beginning matches this pattern. It will then merge those two chunks into a single chunk.

  • left_tag_pattern (str) – This rule’s left tag pattern. When applied to a ChunkString, this rule will find any chunk whose end matches this pattern, and immediately followed by a strip whose beginning matches right_tag_pattern. It will then expand the chunk to incorporate the new material on the right.

  • descr (str) – A short description of the purpose and/or effect of this rule.

class nltk.chunk.regexp.MergeRule[source]

Bases: RegexpChunkRule

A rule specifying how to merge chunks in a ChunkString, using two matching tag patterns: a left pattern, and a right pattern. When applied to a ChunkString, it will find any chunk whose end matches left pattern, and immediately followed by a chunk whose beginning matches right pattern. It will then merge those two chunks into a single chunk.

__init__(left_tag_pattern, right_tag_pattern, descr)[source]

Construct a new MergeRule.

Parameters
  • right_tag_pattern (str) – This rule’s right tag pattern. When applied to a ChunkString, this rule will find any chunk whose end matches left_tag_pattern, and immediately followed by a chunk whose beginning matches this pattern. It will then merge those two chunks into a single chunk.

  • left_tag_pattern (str) – This rule’s left tag pattern. When applied to a ChunkString, this rule will find any chunk whose end matches this pattern, and immediately followed by a chunk whose beginning matches right_tag_pattern. It will then merge those two chunks into a single chunk.

  • descr (str) – A short description of the purpose and/or effect of this rule.

class nltk.chunk.regexp.RegexpChunkParser[source]

Bases: ChunkParserI

A regular expression based chunk parser. RegexpChunkParser uses a sequence of “rules” to find chunks of a single type within a text. The chunking of the text is encoded using a ChunkString, and each rule acts by modifying the chunking in the ChunkString. The rules are all implemented using regular expression matching and substitution.

The RegexpChunkRule class and its subclasses (ChunkRule, StripRule, UnChunkRule, MergeRule, and SplitRule) define the rules that are used by RegexpChunkParser. Each rule defines an apply() method, which modifies the chunking encoded by a given ChunkString.

Variables
  • _rules – The list of rules that should be applied to a text.

  • _trace – The default level of tracing.

__init__(rules, chunk_label='NP', root_label='S', trace=0)[source]

Construct a new RegexpChunkParser.

Parameters
  • rules (list(RegexpChunkRule)) – The sequence of rules that should be used to generate the chunking for a tagged text.

  • chunk_label (str) – The node value that should be used for chunk subtrees. This is typically a short string describing the type of information contained by the chunk, such as "NP" for base noun phrases.

  • root_label (str) – The node value that should be used for the top node of the chunk structure.

  • trace (int) – The level of tracing that should be used when parsing a text. 0 will generate no tracing output; 1 will generate normal tracing output; and 2 or higher will generate verbose tracing output.

parse(chunk_struct, trace=None)[source]
Parameters
  • chunk_struct (Tree) – the chunk structure to be (further) chunked

  • trace (int) – The level of tracing that should be used when parsing a text. 0 will generate no tracing output; 1 will generate normal tracing output; and 2 or higher will generate verbose tracing output. This value overrides the trace level value that was given to the constructor.

Return type

Tree

Returns

a chunk structure that encodes the chunks in a given tagged sentence. A chunk is a non-overlapping linguistic group, such as a noun phrase. The set of chunks identified in the chunk structure depends on the rules used to define this RegexpChunkParser.

rules()[source]
Returns

the sequence of rules used by RegexpChunkParser.

Return type

list(RegexpChunkRule)

class nltk.chunk.regexp.RegexpChunkRule[source]

Bases: object

A rule specifying how to modify the chunking in a ChunkString, using a transformational regular expression. The RegexpChunkRule class itself can be used to implement any transformational rule based on regular expressions. There are also a number of subclasses, which can be used to implement simpler types of rules, based on matching regular expressions.

Each RegexpChunkRule has a regular expression and a replacement expression. When a RegexpChunkRule is “applied” to a ChunkString, it searches the ChunkString for any substring that matches the regular expression, and replaces it using the replacement expression. This search/replace operation has the same semantics as re.sub.

Each RegexpChunkRule also has a description string, which gives a short (typically less than 75 characters) description of the purpose of the rule.

This transformation defined by this RegexpChunkRule should only add and remove braces; it should not modify the sequence of angle-bracket delimited tags. Furthermore, this transformation may not result in nested or mismatched bracketing.

__init__(regexp, repl, descr)[source]

Construct a new RegexpChunkRule.

Parameters
  • regexp (regexp or str) – The regular expression for this RegexpChunkRule. When this rule is applied to a ChunkString, any substring that matches regexp will be replaced using the replacement string repl. Note that this must be a normal regular expression, not a tag pattern.

  • repl (str) – The replacement expression for this RegexpChunkRule. When this rule is applied to a ChunkString, any substring that matches regexp will be replaced using repl.

  • descr (str) – A short description of the purpose and/or effect of this rule.

apply(chunkstr)[source]

Apply this rule to the given ChunkString. See the class reference documentation for a description of what it means to apply a rule.

Parameters

chunkstr (ChunkString) – The chunkstring to which this rule is applied.

Return type

None

Raises

ValueError – If this transformation generated an invalid chunkstring.

descr()[source]

Return a short description of the purpose and/or effect of this rule.

Return type

str

static fromstring(s)[source]

Create a RegexpChunkRule from a string description. Currently, the following formats are supported:

{regexp}         # chunk rule
}regexp{         # strip rule
regexp}{regexp   # split rule
regexp{}regexp   # merge rule

Where regexp is a regular expression for the rule. Any text following the comment marker (#) will be used as the rule’s description:

>>> from nltk.chunk.regexp import RegexpChunkRule
>>> RegexpChunkRule.fromstring('{<DT>?<NN.*>+}')
<ChunkRule: '<DT>?<NN.*>+'>
class nltk.chunk.regexp.RegexpParser[source]

Bases: ChunkParserI

A grammar based chunk parser. chunk.RegexpParser uses a set of regular expression patterns to specify the behavior of the parser. The chunking of the text is encoded using a ChunkString, and each rule acts by modifying the chunking in the ChunkString. The rules are all implemented using regular expression matching and substitution.

A grammar contains one or more clauses in the following form:

NP:
  {<DT|JJ>}          # chunk determiners and adjectives
  }<[\.VI].*>+{      # strip any tag beginning with V, I, or .
  <.*>}{<DT>         # split a chunk at a determiner
  <DT|JJ>{}<NN.*>    # merge chunk ending with det/adj
                     # with one starting with a noun

The patterns of a clause are executed in order. An earlier pattern may introduce a chunk boundary that prevents a later pattern from executing. Sometimes an individual pattern will match on multiple, overlapping extents of the input. As with regular expression substitution more generally, the chunker will identify the first match possible, then continue looking for matches after this one has ended.

The clauses of a grammar are also executed in order. A cascaded chunk parser is one having more than one clause. The maximum depth of a parse tree created by this chunk parser is the same as the number of clauses in the grammar.

When tracing is turned on, the comment portion of a line is displayed each time the corresponding pattern is applied.

Variables
  • _start – The start symbol of the grammar (the root node of resulting trees)

  • _stages – The list of parsing stages corresponding to the grammar

__init__(grammar, root_label='S', loop=1, trace=0)[source]

Create a new chunk parser, from the given start state and set of chunk patterns.

Parameters
  • grammar (str or list(RegexpChunkParser)) – The grammar, or a list of RegexpChunkParser objects

  • root_label (str or Nonterminal) – The top node of the tree being created

  • loop (int) – The number of times to run through the patterns

  • trace (int) – The level of tracing that should be used when parsing a text. 0 will generate no tracing output; 1 will generate normal tracing output; and 2 or higher will generate verbose tracing output.

parse(chunk_struct, trace=None)[source]

Apply the chunk parser to this input.

Parameters
  • chunk_struct (Tree) – the chunk structure to be (further) chunked (this tree is modified, and is also returned)

  • trace (int) – The level of tracing that should be used when parsing a text. 0 will generate no tracing output; 1 will generate normal tracing output; and 2 or higher will generate verbose tracing output. This value overrides the trace level value that was given to the constructor.

Returns

the chunked output.

Return type

Tree

class nltk.chunk.regexp.SplitRule[source]

Bases: RegexpChunkRule

A rule specifying how to split chunks in a ChunkString, using two matching tag patterns: a left pattern, and a right pattern. When applied to a ChunkString, it will find any chunk that matches the left pattern followed by the right pattern. It will then split the chunk into two new chunks, at the point between the two pattern matches.

__init__(left_tag_pattern, right_tag_pattern, descr)[source]

Construct a new SplitRule.

Parameters
  • right_tag_pattern (str) – This rule’s right tag pattern. When applied to a ChunkString, this rule will find any chunk containing a substring that matches left_tag_pattern followed by this pattern. It will then split the chunk into two new chunks at the point between these two matching patterns.

  • left_tag_pattern (str) – This rule’s left tag pattern. When applied to a ChunkString, this rule will find any chunk containing a substring that matches this pattern followed by right_tag_pattern. It will then split the chunk into two new chunks at the point between these two matching patterns.

  • descr (str) – A short description of the purpose and/or effect of this rule.

class nltk.chunk.regexp.StripRule[source]

Bases: RegexpChunkRule

A rule specifying how to remove strips to a ChunkString, using a matching tag pattern. When applied to a ChunkString, it will find any substring that matches this tag pattern and that is contained in a chunk, and remove it from that chunk, thus creating two new chunks.

__init__(tag_pattern, descr)[source]

Construct a new StripRule.

Parameters
  • tag_pattern (str) – This rule’s tag pattern. When applied to a ChunkString, this rule will find any substring that matches this tag pattern and that is contained in a chunk, and remove it from that chunk, thus creating two new chunks.

  • descr (str) – A short description of the purpose and/or effect of this rule.

class nltk.chunk.regexp.UnChunkRule[source]

Bases: RegexpChunkRule

A rule specifying how to remove chunks to a ChunkString, using a matching tag pattern. When applied to a ChunkString, it will find any complete chunk that matches this tag pattern, and un-chunk it.

__init__(tag_pattern, descr)[source]

Construct a new UnChunkRule.

Parameters
  • tag_pattern (str) – This rule’s tag pattern. When applied to a ChunkString, this rule will find any complete chunk that matches this tag pattern, and un-chunk it.

  • descr (str) – A short description of the purpose and/or effect of this rule.

nltk.chunk.regexp.demo()[source]

A demonstration for the RegexpChunkParser class. A single text is parsed with four different chunk parsers, using a variety of rules and strategies.

nltk.chunk.regexp.demo_eval(chunkparser, text)[source]

Demonstration code for evaluating a chunk parser, using a ChunkScore. This function assumes that text contains one sentence per line, and that each sentence has the form expected by tree.chunk. It runs the given chunk parser on each sentence in the text, and scores the result. It prints the final score (precision, recall, and f-measure); and reports the set of chunks that were missed and the set of chunks that were incorrect. (At most 10 missing chunks and 10 incorrect chunks are reported).

Parameters
  • chunkparser (ChunkParserI) – The chunkparser to be tested

  • text (str) – The chunked tagged text that should be used for evaluation.

nltk.chunk.regexp.tag_pattern2re_pattern(tag_pattern)[source]

Convert a tag pattern to a regular expression pattern. A “tag pattern” is a modified version of a regular expression, designed for matching sequences of tags. The differences between regular expression patterns and tag patterns are:

  • In tag patterns, '<' and '>' act as parentheses; so '<NN>+' matches one or more repetitions of '<NN>', not '<NN' followed by one or more repetitions of '>'.

  • Whitespace in tag patterns is ignored. So '<DT> | <NN>' is equivalent to '<DT>|<NN>'

  • In tag patterns, '.' is equivalent to '[^{}<>]'; so '<NN.*>' matches any single tag starting with 'NN'.

In particular, tag_pattern2re_pattern performs the following transformations on the given pattern:

  • Replace ‘.’ with ‘[^<>{}]’

  • Remove any whitespace

  • Add extra parens around ‘<’ and ‘>’, to make ‘<’ and ‘>’ act like parentheses. E.g., so that in ‘<NN>+’, the ‘+’ has scope over the entire ‘<NN>’; and so that in ‘<NN|IN>’, the ‘|’ has scope over ‘NN’ and ‘IN’, but not ‘<’ or ‘>’.

  • Check to make sure the resulting pattern is valid.

Parameters

tag_pattern (str) – The tag pattern to convert to a regular expression pattern.

Raises

ValueError – If tag_pattern is not a valid tag pattern. In particular, tag_pattern should not include braces; and it should not contain nested or mismatched angle-brackets.

Return type

str

Returns

A regular expression pattern corresponding to tag_pattern.