Home | Trees | Indices | Help |
|
---|
|
Basic data classes for representing feature structures, and for performing basic operations on those feature structures. A feature structure is a mapping from feature identifiers to feature values, where each feature value is either a basic value (such as a string or an integer), or a nested feature structure. There are two types of feature structure, implemented by two subclasses of FeatStruct:
Feature structures are typically used to represent partial information
about objects. A feature identifier that is not mapped to a value stands
for a feature whose value is unknown (not a feature without a
value). Two feature structures that represent (potentially overlapping)
information about the same object can be combined by unification. When
two inconsistent feature structures are unified, the unification fails
and returns None
.
Features can be specified using feature paths, or tuples of feature identifiers that specify path through the nested feature structures to a value. Feature structures may contain reentrant feature values. A reentrant feature value is a single feature value that can be accessed via multiple feature paths. Unification preserves the reentrance relations imposed by both of the unified feature structures. In the feature structure resulting from unification, any modifications to a reentrant feature value will be visible using any of its feature paths.
Feature structure variables are encoded using the nltk.sem.Variable class. The variables' values are tracked using a bindings dictionary, which maps variables to their values. When two feature structures are unified, a fresh bindings dictionary is created to track their values; and before unification completes, all bound variables are replaced by their values. Thus, the bindings dictionaries are usually strictly internal to the unification process. However, it is possible to track the bindings of variables if you choose to, by supplying your own initial bindings dictionary to the unify() function.
When unbound variables are unified with one another, they become aliased. This is encoded by binding one variable to the other.
Many of the functions defined by nltk.featstruct can
be applied directly to simple Python dictionaries and lists, rather
than to full-fledged FeatDict and FeatList
objects. In other words, Python dicts
and
lists
can be used as "light-weight" feature
structures.
>>> from nltk.featstruct import unify >>> unify(dict(x=1, y=dict()), dict(a='a', y=dict(b='b'))) {'y': {'b': 'b'}, 'x': 1, 'a': 'a'}
However, you should keep in mind the following caveats:
In general, if your feature structures will contain any reentrances, or if you plan to use them as dictionary keys, it is strongly recommended that you use full-fledged FeatStruct objects.
|
|||
FeatStruct A mapping from feature identifiers to feature values, where each feature value is either a basic value (such as a string or an integer), or a nested feature structure. |
|||
FeatDict A feature structure that acts like a Python dictionary. |
|||
FeatList A list of feature values, where each feature value is either a basic value (such as a string or an integer), or a nested feature structure. |
|||
_UnificationFailure | |||
_UnificationFailureError An exception that is used by _destructively_unify to
abort unification when a failure is encountered.
|
|||
SubstituteBindingsSequence A mixin class for sequence clases that distributes variables() and substitute_bindings() over the object's elements. |
|||
FeatureValueTuple A base feature value that is a tuple of other base feature values. |
|||
FeatureValueSet A base feature value that is a set of other base feature values. |
|||
FeatureValueUnion A base feature value that represents the union of two or more FeatureValueSets or Variables. |
|||
FeatureValueConcat A base feature value that represents the concatenation of two or more FeatureValueTuples or Variables. |
|||
Feature A feature identifier that's specialized to put additional constraints, default values, etc. |
|||
SlashFeature | |||
RangeFeature | |||
CustomFeatureValue An abstract base class for base values that define a custom unification method. |
|||
FeatStructParser |
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
set of Variable
|
|
||
|
|||
|
|||
|
|||
|
|||
FeatStruct |
|
||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
list of tuple
|
|
||
|
|||
|
|||
|
|||
|
|||
Demo | |||
---|---|---|---|
|
|||
|
|||
|
|
|||
_FROZEN_ERROR =
|
|||
_FROZEN_NOTICE =
|
|||
UnificationFailure = nltk.featstruct.UnificationFailure A unique value used to indicate unification failure. |
|||
SLASH = *slash*
|
|||
TYPE = *type*
|
|
Given a method function, return a new method function that first
checks if |
|
|
|
|
|
Unify
If no such feature structure exists (because
|
Attempt to unify
|
Attempt to unify
|
|
|
|
UnificationFailureA unique value used to indicate unification failure. It can be
returned by Feature.unify_base_values() or by custom
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0beta1 on Wed Aug 27 15:08:50 2008 | http://epydoc.sourceforge.net |