| Interface | Description |
|---|---|
| DependencyExtractor |
An interface for classes that read the output files of dependency parse
sentences and convert the data into a dependency parse tree.
|
| DependencyPath |
An interface for representing the nodes and their relations in a dependency
path.
|
| DependencyPathAcceptor |
An interface for deciding whether a provided path is valid for further
processing.
|
| DependencyPathWeight |
An interface for weighting, or scoring, dependency paths.
|
| DependencyPermutationFunction<T extends Vector> |
An interface for permuting a
Vector based on a dependecny path,
represented as a list of DependencyRelations. |
| DependencyRelation |
An interface for representing a dependency relationship between a head node
and its dependent relation.
|
| DependencyRelationAcceptor |
An interface for providing restrictions on dependency relations.
|
| DependencyTreeNode |
The interface for a word in a dependency parse tree.
|
| DependencyTreeTransform |
An interface for transforming a dependency tree represented by a series of
DependencyTreeNodes. |
| Class | Description |
|---|---|
| BreadthFirstPathIterator |
A class for performing a breadth-first iteration of the links in a dependency
tree starting at any arbitrary node.
|
| ConjunctionTransform |
Transforms the dependency tree by adding conjunction relations between head
words and a list of words joined by a conjunction.
|
| CoNLLDependencyExtractor |
A class for extracting dependency parsed sentences in the CoNLL format, which
are generated by the Malt
Parser.
|
| DefaultDependencyPermutationFunction<T extends Vector> |
An default
DependencyPermutationFunction for permuting a Vector based on a dependecny path, represented as a list of DependencyRelationss. |
| DependencyExtractorManager |
A coordinating utility class for managing all the
DependencyExtractor
instances responsible for reading all of the different dependency parsing
output formats. |
| DependencyIterator |
A traversal class for iterating over a dependency tree of
Relations. |
| FilteredDependencyIterator |
A traversal class for iterating over a dependency tree of
Relations. |
| FlatPathWeight |
A
DependencyPathWeight that returns 1 for every path. |
| LengthPathWeight |
A
DependencyPathWeight that scores paths inversely proportional to
their length. |
| RelationPathWeight |
A
DependencyPathWeight that scores paths based on the relations in
the path. |
| RelationPermutationFunction<T extends Vector> |
An default
DependencyPermutationFunction for permuting a Vector based on a dependecny path, represented as a list of DependencyRelations. |
| RelationSumPathWeight |
A
DependencyPathWeight that scores paths based on the sum of the
relations in the path. |
| RelationSumPermutationFunction<T extends Vector> |
An default
DependencyPermutationFunction for permuting a Vector based on a dependecny path, represented as a list of DependencyRelations. |
| SimpleDependencyPath |
A
DependencyPath that supports constant time access to the nodes and
relations that make up its sequence. |
| SimpleDependencyRelation |
A simple
DependencyRelation implementation holds both related nodes
and their relation. |
| SimpleDependencyTreeNode |
A default implementation of a
DependencyTreeNode that allows
mutating access to the list of neighbors. |
| SubjObjRelationAcceptor | |
| UniversalPathAcceptor |
A
DependencyPathAcceptor that accepts all links. |
| UniversalRelationAcceptor |
A
DependencyPathAcceptor that accepts all links. |
| WaCKyDependencyExtractor |
A class for extracting dependency parsed sentences from WaCKy corpora.
|
Copyright © 2012. All Rights Reserved.