class StreamBackedCorpusView(AbstractLazySequence): (source)
Known subclasses: nltk.corpus.reader.aligned.AlignedSentCorpusView
, nltk.corpus.reader.chasen.ChasenCorpusView
, nltk.corpus.reader.chunked.ChunkedCorpusView
, nltk.corpus.reader.dependency.DependencyCorpusView
, nltk.corpus.reader.indian.IndianCorpusView
, nltk.corpus.reader.ipipan.IPIPANCorpusView
, nltk.corpus.reader.opinion_lexicon.IgnoreReadmeCorpusView
, nltk.corpus.reader.senseval.SensevalCorpusView
, nltk.corpus.reader.tagged.TaggedCorpusView
, nltk.corpus.reader.TEICorpusView
, nltk.corpus.reader.util.PickleCorpusView
, nltk.corpus.reader.xmldocs.XMLCorpusView
Constructor: StreamBackedCorpusView(fileid, block_reader, startpos, encoding)
A 'view' of a corpus file, which acts like a sequence of tokens: it can be accessed by index, iterated over, etc. However, the tokens are only constructed as-needed -- the entire corpus is never stored in memory at once.
The constructor to StreamBackedCorpusView takes two arguments: a corpus fileid (specified as a string or as a PathPointer); and a block reader. A "block reader" is a function that reads zero or more tokens from a stream, and returns them as a list. A very simple example of a block reader is:
>>> def simple_block_reader(stream): ... return stream.readline().split()
This simple block reader reads a single line at a time, and returns a single token (consisting of a string) for each whitespace-separated substring on the line.
When deciding how to define the block reader for a given corpus, careful consideration should be given to the size of blocks handled by the block reader. Smaller block sizes will increase the memory requirements of the corpus view's internal data structures (by 2 integers per block). On the other hand, larger block sizes may decrease performance for random access to the corpus. (But note that larger block sizes will not decrease performance for iteration.)
Internally, CorpusView maintains a partial mapping from token index to file position, with one entry per block. When a token with a given index i is requested, the CorpusView constructs it as follows:
- First, it searches the toknum/filepos mapping for the token index closest to (but less than or equal to) i.
- Then, starting at the file position corresponding to that index, it reads one block at a time using the block reader until it reaches the requested token.
The toknum/filepos mapping is created lazily: it is initially empty, but every time a new block is read, the block's initial token is added to the mapping. (Thus, the toknum/filepos map has one entry per block.)
In order to increase efficiency for random access patterns that have high degrees of locality, the corpus view may cache one or more blocks.
Note | |
Each CorpusView object internally maintains an open file object for its underlying corpus file. This file should be automatically closed when the CorpusView is garbage collected, but if you wish to close it manually, use the close() method. If you access a CorpusView's items after it has been closed, the file object will be automatically re-opened. | |
Unknown Field: warning | |
If the contents of the file are modified during the lifetime of the CorpusView, then the CorpusView's behavior is undefined. | |
If a unicode encoding is specified when constructing a CorpusView, then the block reader may only call stream.seek() with offsets that have been returned by stream.tell(); in particular, calling stream.seek() with relative offsets, or with offsets based on string lengths, may lead to incorrect behavior. |
Method | __add__ |
Undocumented |
Method | __enter__ |
Undocumented |
Method | __exit__ |
Undocumented |
Method | __getitem__ |
Undocumented |
Method | __init__ |
Create a new corpus view, based on the file fileid, and read with block_reader. See the class documentation for more information. |
Method | __len__ |
Undocumented |
Method | __mul__ |
Undocumented |
Method | __radd__ |
Undocumented |
Method | __rmul__ |
Undocumented |
Method | close |
Close the file stream associated with this corpus view. This can be useful if you are worried about running out of file handles (although the stream should automatically be closed upon garbage collection of the corpus view)... |
Method | iterate |
Undocumented |
Method | read |
Read a block from the input stream. |
Class Variable | fileid |
Undocumented |
Method | _open |
Open the file stream associated with this corpus view. This will be called performed if any value is read from the view while its file stream is closed. |
Instance Variable | _block |
The function used to read a single block from the underlying file stream. |
Instance Variable | _cache |
A cache of the most recently read block. It is encoded as a tuple (start_toknum, end_toknum, tokens), where start_toknum is the token index of the first token in the block; end_toknum is the token index of the first token not in the block; and tokens is a list of the tokens in the block. |
Instance Variable | _current |
This variable is set to the index of the next block that will be read, immediately before self.read_block() is called. This is provided for the benefit of the block reader, which under rare circumstances may need to know the current block number. |
Instance Variable | _current |
This variable is set to the index of the next token that will be read, immediately before self.read_block() is called. This is provided for the benefit of the block reader, which under rare circumstances may need to know the current token number. |
Instance Variable | _encoding |
Undocumented |
Instance Variable | _eofpos |
The character position of the last character in the file. This is calculated when the corpus view is initialized, and is used to decide when the end of file has been reached. |
Instance Variable | _fileid |
Undocumented |
Instance Variable | _filepos |
A list containing the file position of each block that has been processed. In particular, _toknum[i] is the file position of the first character in block i. Together with _toknum, this forms a partial mapping between token indices and file positions. |
Instance Variable | _len |
The total number of tokens in the corpus, if known; or None, if the number of tokens is not yet known. |
Instance Variable | _stream |
The stream used to access the underlying corpus file. |
Instance Variable | _toknum |
A list containing the token index of each block that has been processed. In particular, _toknum[i] is the token index of the first token in block i. Together with _filepos, this forms a partial mapping between token indices and file positions. |
nltk.corpus.reader.aligned.AlignedSentCorpusView
, nltk.corpus.reader.chasen.ChasenCorpusView
, nltk.corpus.reader.chunked.ChunkedCorpusView
, nltk.corpus.reader.dependency.DependencyCorpusView
, nltk.corpus.reader.indian.IndianCorpusView
, nltk.corpus.reader.ipipan.IPIPANCorpusView
, nltk.corpus.reader.opinion_lexicon.IgnoreReadmeCorpusView
, nltk.corpus.reader.senseval.SensevalCorpusView
, nltk.corpus.reader.tagged.TaggedCorpusView
, nltk.corpus.reader.TEICorpusView
, nltk.corpus.reader.util.PickleCorpusView
, nltk.corpus.reader.xmldocs.XMLCorpusView
Create a new corpus view, based on the file fileid, and read with block_reader. See the class documentation for more information.
Parameters | |
fileid | The path to the file that is read by this corpus view. fileid can either be a string or a PathPointer. |
block | Undocumented |
startpos | The file position at which the view will start reading. This can be used to skip over preface sections. |
encoding | The unicode encoding that should be used to read the file's contents. If no encoding is specified, then the file's contents will be read as a non-unicode string (i.e., a str). |
Close the file stream associated with this corpus view. This can be useful if you are worried about running out of file handles (although the stream should automatically be closed upon garbage collection of the corpus view). If the corpus view is accessed after it is closed, it will be automatically re-opened.
nltk.corpus.reader.aligned.AlignedSentCorpusView
, nltk.corpus.reader.chasen.ChasenCorpusView
, nltk.corpus.reader.chunked.ChunkedCorpusView
, nltk.corpus.reader.dependency.DependencyCorpusView
, nltk.corpus.reader.indian.IndianCorpusView
, nltk.corpus.reader.ipipan.IPIPANCorpusView
, nltk.corpus.reader.senseval.SensevalCorpusView
, nltk.corpus.reader.tagged.TaggedCorpusView
, nltk.corpus.reader.TEICorpusView
, nltk.corpus.reader.util.PickleCorpusView
, nltk.corpus.reader.xmldocs.XMLCorpusView
Read a block from the input stream.
Parameters | |
stream:stream | an input stream |
Returns | |
list(any) | a block of tokens from the input stream |
Open the file stream associated with this corpus view. This will be called performed if any value is read from the view while its file stream is closed.
A cache of the most recently read block. It is encoded as a tuple (start_toknum, end_toknum, tokens), where start_toknum is the token index of the first token in the block; end_toknum is the token index of the first token not in the block; and tokens is a list of the tokens in the block.
This variable is set to the index of the next block that will be read, immediately before self.read_block() is called. This is provided for the benefit of the block reader, which under rare circumstances may need to know the current block number.
This variable is set to the index of the next token that will be read, immediately before self.read_block() is called. This is provided for the benefit of the block reader, which under rare circumstances may need to know the current token number.
The character position of the last character in the file. This is calculated when the corpus view is initialized, and is used to decide when the end of file has been reached.
A list containing the file position of each block that has been processed. In particular, _toknum[i] is the file position of the first character in block i. Together with _toknum, this forms a partial mapping between token indices and file positions.