Home | Trees | Indices | Help |
|
---|
|
object --+ | TaggerI
A processing interface for assigning a tag to each token in a list. Tags are case sensitive strings that identify some property of each token, such as its part of speech or its sense.
Some taggers require specific types for their tokens. This is
generally indicated by the use of a sub-interface to
TaggerI
. For example, featureset taggers, which are
subclassed from FeaturesetTaggerI, require that each token be a
featureset.
Subclasses must define:
|
|||
list of (token, tag)
|
|
||
|
|||
Inherited from |
|
|||
Inherited from |
|
Determine the most appropriate tag sequence for the given token
sequence, and return a corresponding list of tagged tokens. A tagged
token is encoded as a tuple
|
Apply self.tag() to each element of >>> return [self.tag(tokens) for tokens in sentences] |
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0beta1 on Wed Aug 27 15:08:57 2008 | http://epydoc.sourceforge.net |