Package nltk :: Package corpus :: Package reader :: Module dependency :: Class DependencyCorpusReader
[hide private]
[frames] | no frames]

type DependencyCorpusReader

source code

        object --+        
                 |        
  api.CorpusReader --+    
                     |    
api.SyntaxCorpusReader --+
                         |
                        DependencyCorpusReader

Instance Methods [hide private]
 
__init__(self, root, fileids, encoding=None, word_tokenizer=TabTokenizer(), sent_tokenizer=RegexpTokenizer(pattern='\n', gaps=True, discard_empty=True, f..., para_block_reader=<function read_blankline_block at 0x132be70>) source code
str
raw(self, fileids=None)
Returns: the given file(s) as a single string.
source code
 
words(self, fileids=None) source code
 
tagged_words(self, fileids=None) source code
 
sents(self, fileids=None) source code
 
tagged_sents(self, fileids=None) source code
 
parsed_sents(self, fileids=None) source code

Inherited from api.SyntaxCorpusReader (private): _parse, _read_block, _tag, _word

Inherited from api.CorpusReader: __repr__, abspath, abspaths, encoding, fileids, open, readme

Inherited from api.CorpusReader (private): _get_root

    Block Readers
    Deprecated since 0.8

Inherited from api.SyntaxCorpusReader: parsed, read, tagged, tokenized

    Deprecated since 0.9.7

Inherited from api.CorpusReader: files

    Deprecated since 0.9.1

Inherited from api.CorpusReader: items

Inherited from api.CorpusReader (private): _get_items

Instance Variables [hide private]

Inherited from api.CorpusReader (private): _encoding, _fileids, _root

Properties [hide private]

Inherited from api.CorpusReader: root

Method Details [hide private]

__init__(self, root, fileids, encoding=None, word_tokenizer=TabTokenizer(), sent_tokenizer=RegexpTokenizer(pattern='\n', gaps=True, discard_empty=True, f..., para_block_reader=<function read_blankline_block at 0x132be70>)
(Constructor)

source code 
Parameters:
  • root - A path pointer identifying the root directory for this corpus. If a string is specified, then it will be converted to a PathPointer automatically.
  • fileids - A list of the files that make up this corpus. This list can either be specified explicitly, as a list of strings; or implicitly, as a regular expression over file paths. The absolute path for each file will be constructed by joining the reader's root to each file name.
  • encoding - The default unicode encoding for the files that make up the corpus. encoding's value can be any of the following:
    • A string: encoding is the encoding name for all files.
    • A dictionary: encoding[file_id] is the encoding name for the file whose identifier is file_id. If file_id is not in encoding, then the file contents will be processed using non-unicode byte strings.
    • A list: encoding should be a list of (regexp, encoding) tuples. The encoding for a file whose identifier is file_id will be the encoding value for the first tuple whose regexp matches the file_id. If no tuple's regexp matches the file_id, the file contents will be processed using non-unicode byte strings.
    • None: the file contents of all files will be processed using non-unicode byte strings.
  • tag_mapping_function - A function for normalizing or simplifying the POS tags returned by the tagged_words() or tagged_sents() methods.
Overrides: api.CorpusReader.__init__
(inherited documentation)

raw(self, fileids=None)

source code 
Returns: str
the given file(s) as a single string.
Overrides: api.SyntaxCorpusReader.raw

words(self, fileids=None)

source code 
Overrides: api.SyntaxCorpusReader.words

tagged_words(self, fileids=None)

source code 
Overrides: api.SyntaxCorpusReader.tagged_words

sents(self, fileids=None)

source code 
Overrides: api.SyntaxCorpusReader.sents

tagged_sents(self, fileids=None)

source code 
Overrides: api.SyntaxCorpusReader.tagged_sents

parsed_sents(self, fileids=None)

source code 
Overrides: api.SyntaxCorpusReader.parsed_sents