Package | Description |
---|---|
org.maltparser.core.lw.graph | |
org.maltparser.core.lw.parser | |
org.maltparser.core.syntaxgraph | |
org.maltparser.ml |
Contains an interface and classes for creating an interface to an machine learning method.
|
org.maltparser.ml.lib | |
org.maltparser.parser |
The top package for Single Malt Parser.
|
org.maltparser.parser.algorithm.covington |
Implements the Covington deterministic parsing algorithms.
|
org.maltparser.parser.algorithm.nivre |
Implements the Nivre deterministic parsing algorithms.
|
org.maltparser.parser.algorithm.planar | |
org.maltparser.parser.algorithm.stack |
Implements the Stack parsing algorithms.
|
org.maltparser.parser.algorithm.twoplanar | |
org.maltparser.parser.guide |
Contains classes that implements the guide, which can be seen as an interface (or glue) between the parsing algorithm and the learner.
|
org.maltparser.parser.guide.decision |
Provides classes for different decision models.
|
org.maltparser.parser.guide.instance |
Provides classes for different instance models.
|
org.maltparser.transform.pseudo |
Contains classes for performing pre-processing and post-processing transformations on dependency graphs.
|
Modifier and Type | Class and Description |
---|---|
class |
LWDependencyGraph
A lightweight version of org.maltparser.core.syntaxgraph.DependencyGraph.
|
Modifier and Type | Method and Description |
---|---|
protected DependencyStructure |
LWNode.getGraph() |
static DependencyStructure |
LWTest.getOldDependencyGraph(org.maltparser.concurrent.graph.dataformat.DataFormat dataFormat,
SymbolTableHandler symbolTableHandlers,
java.lang.String[] tokens) |
Modifier and Type | Method and Description |
---|---|
void |
LWDeprojectivizer.deprojectivize(DependencyStructure pdg,
int markingStrategy) |
Modifier and Type | Method and Description |
---|---|
DependencyStructure |
LWDeterministicParser.parse(DependencyStructure parseDependencyGraph) |
Modifier and Type | Method and Description |
---|---|
void |
LWSingleMalt.oracleParse(DependencyStructure goldGraph,
DependencyStructure oracleGraph) |
void |
LWSingleMalt.parse(DependencyStructure graph) |
DependencyStructure |
LWDeterministicParser.parse(DependencyStructure parseDependencyGraph) |
Modifier and Type | Class and Description |
---|---|
class |
DependencyGraph |
class |
MappablePhraseStructureGraph |
Modifier and Type | Method and Description |
---|---|
void |
CopyChartItem.copyPartialDependencyStructure(DependencyStructure sourceGraph,
DependencyStructure targetGraph) |
Modifier and Type | Method and Description |
---|---|
void |
LearningMethod.finalizeSentence(DependencyStructure dependencyGraph) |
Modifier and Type | Method and Description |
---|---|
void |
Lib.finalizeSentence(DependencyStructure dependencyGraph) |
Modifier and Type | Method and Description |
---|---|
abstract DependencyStructure |
ParserConfiguration.getDependencyGraph()
Returns the dependency structure
|
DependencyStructure |
DeterministicParser.parse(DependencyStructure parseDependencyGraph) |
abstract DependencyStructure |
Parser.parse(DependencyStructure parseDependencyGraph)
Parses the empty dependency graph
|
DependencyStructure |
DeterministicParserWithDiagnostics.parse(DependencyStructure parseDependencyGraph) |
abstract DependencyStructure |
Trainer.parse(DependencyStructure goldDependencyGraph,
DependencyStructure parseDependencyGraph)
Trains a parser using the gold-standard dependency graph and returns a parsed dependency graph
|
DependencyStructure |
BatchTrainerWithDiagnostics.parse(DependencyStructure goldDependencyGraph,
DependencyStructure parseDependencyGraph) |
DependencyStructure |
BatchTrainer.parse(DependencyStructure goldDependencyGraph,
DependencyStructure parseDependencyGraph) |
Modifier and Type | Method and Description |
---|---|
protected void |
ParsingAlgorithm.copyDynamicInput(DependencyStructure source,
DependencyStructure target) |
protected void |
ParsingAlgorithm.copyEdges(DependencyStructure source,
DependencyStructure target)
Copies the edges of the source dependency structure to the target dependency structure
|
void |
ParserState.initialize(DependencyStructure dependencyStructure) |
void |
DependencyParserConfig.oracleParse(DependencyStructure goldGraph,
DependencyStructure oracleGraph) |
void |
SingleMalt.oracleParse(DependencyStructure goldGraph,
DependencyStructure oracleGraph) |
void |
DependencyParserConfig.parse(DependencyStructure graph) |
DependencyStructure |
DeterministicParser.parse(DependencyStructure parseDependencyGraph) |
abstract DependencyStructure |
Parser.parse(DependencyStructure parseDependencyGraph)
Parses the empty dependency graph
|
DependencyStructure |
DeterministicParserWithDiagnostics.parse(DependencyStructure parseDependencyGraph) |
void |
SingleMalt.parse(DependencyStructure graph) |
abstract DependencyStructure |
Trainer.parse(DependencyStructure goldDependencyGraph,
DependencyStructure parseDependencyGraph)
Trains a parser using the gold-standard dependency graph and returns a parsed dependency graph
|
DependencyStructure |
BatchTrainerWithDiagnostics.parse(DependencyStructure goldDependencyGraph,
DependencyStructure parseDependencyGraph) |
DependencyStructure |
BatchTrainer.parse(DependencyStructure goldDependencyGraph,
DependencyStructure parseDependencyGraph) |
abstract void |
ParserConfiguration.setDependencyGraph(DependencyStructure dependencyStructure)
Sets the dependency structure
|
Modifier and Type | Method and Description |
---|---|
DependencyStructure |
CovingtonConfig.getDependencyGraph() |
DependencyStructure |
CovingtonConfig.getDependencyStructure() |
Modifier and Type | Method and Description |
---|---|
void |
CovingtonOracle.finalizeSentence(DependencyStructure dependencyGraph) |
GuideUserAction |
CovingtonOracle.predict(DependencyStructure gold,
ParserConfiguration config) |
void |
CovingtonConfig.setDependencyGraph(DependencyStructure source) |
Modifier and Type | Method and Description |
---|---|
DependencyStructure |
NivreConfig.getDependencyGraph() |
DependencyStructure |
NivreConfig.getDependencyStructure() |
Modifier and Type | Method and Description |
---|---|
void |
ArcEagerOracle.finalizeSentence(DependencyStructure dependencyGraph) |
void |
ArcStandardOracle.finalizeSentence(DependencyStructure dependencyGraph) |
GuideUserAction |
ArcEagerOracle.predict(DependencyStructure gold,
ParserConfiguration config) |
GuideUserAction |
ArcStandardOracle.predict(DependencyStructure gold,
ParserConfiguration config) |
void |
NivreConfig.setDependencyGraph(DependencyStructure source) |
Modifier and Type | Method and Description |
---|---|
DependencyStructure |
PlanarConfig.getDependencyGraph() |
DependencyStructure |
PlanarConfig.getDependencyStructure() |
Modifier and Type | Method and Description |
---|---|
void |
PlanarArcEagerOracle.finalizeSentence(DependencyStructure dependencyGraph) |
GuideUserAction |
PlanarArcEagerOracle.predict(DependencyStructure gold,
ParserConfiguration config) |
void |
PlanarConfig.setDependencyGraph(DependencyStructure source) |
Modifier and Type | Method and Description |
---|---|
DependencyStructure |
StackConfig.getDependencyGraph() |
DependencyStructure |
StackConfig.getDependencyStructure() |
Modifier and Type | Method and Description |
---|---|
void |
SwapEagerOracle.finalizeSentence(DependencyStructure dependencyGraph) |
void |
ProjectiveOracle.finalizeSentence(DependencyStructure dependencyGraph) |
void |
SwapLazyOracle.finalizeSentence(DependencyStructure dependencyGraph) |
GuideUserAction |
SwapEagerOracle.predict(DependencyStructure gold,
ParserConfiguration configuration) |
GuideUserAction |
ProjectiveOracle.predict(DependencyStructure gold,
ParserConfiguration configuration) |
GuideUserAction |
SwapLazyOracle.predict(DependencyStructure gold,
ParserConfiguration configuration) |
void |
StackConfig.setDependencyGraph(DependencyStructure source) |
Modifier and Type | Method and Description |
---|---|
DependencyStructure |
TwoPlanarConfig.getDependencyGraph() |
DependencyStructure |
TwoPlanarConfig.getDependencyStructure() |
Modifier and Type | Method and Description |
---|---|
void |
TwoPlanarArcEagerOracle.finalizeSentence(DependencyStructure dependencyGraph) |
GuideUserAction |
TwoPlanarArcEagerOracle.predict(DependencyStructure gold,
ParserConfiguration config) |
void |
TwoPlanarConfig.setDependencyGraph(DependencyStructure source) |
Modifier and Type | Method and Description |
---|---|
void |
Guide.finalizeSentence(DependencyStructure dependencyGraph) |
void |
SingleGuide.finalizeSentence(DependencyStructure dependencyGraph) |
void |
Model.finalizeSentence(DependencyStructure dependencyGraph) |
GuideUserAction |
OracleGuide.predict(DependencyStructure gold,
ParserConfiguration config) |
Modifier and Type | Method and Description |
---|---|
void |
BranchedDecisionModel.finalizeSentence(DependencyStructure dependencyGraph) |
void |
OneDecisionModel.finalizeSentence(DependencyStructure dependencyGraph) |
void |
SeqDecisionModel.finalizeSentence(DependencyStructure dependencyGraph) |
Modifier and Type | Method and Description |
---|---|
void |
AtomicModel.finalizeSentence(DependencyStructure dependencyGraph) |
void |
FeatureDivideModel.finalizeSentence(DependencyStructure dependencyGraph) |
Modifier and Type | Method and Description |
---|---|
void |
PseudoProjectivity.deprojectivize(DependencyStructure pdg) |
void |
PseudoProjectivity.mergeArclabels(DependencyStructure pdg) |
void |
PseudoProjectivity.projectivize(DependencyStructure pdg) |
void |
PseudoProjectivity.splitArclabels(DependencyStructure pdg) |
Copyright 2007-2017 Johan Hall, Jens Nilsson and Joakim Nivre.