MaltParser 1.2

Uses of Interface
org.maltparser.core.syntaxgraph.DependencyStructure

Packages that use DependencyStructure
org.maltparser.core.syntaxgraph   
org.maltparser.ml Contains an interface and classes for creating an interface to an machine learning method. 
org.maltparser.ml.libsvm Contains classes that interacts with the LIBSVM learner. 
org.maltparser.ml.libsvm.malt04 Contains classes that interacts with the LIBSVM learner that tries to emulate the behavior of MaltParser 0.4. 
org.maltparser.parser The top package for Single Malt Parser. 
org.maltparser.parser.algorithm Contains classes for creating an implementation of a deterministic parsing algorithm. 
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.nivre.malt04 Implements the Nivre deterministic parsing algorithms that emulate the behavior of MaltParser 0.4. 
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. 
 

Uses of DependencyStructure in org.maltparser.core.syntaxgraph
 

Classes in org.maltparser.core.syntaxgraph that implement DependencyStructure
 class DependencyGraph
           
 class MappablePhraseStructureGraph
           
 

Uses of DependencyStructure in org.maltparser.ml
 

Methods in org.maltparser.ml with parameters of type DependencyStructure
 void LearningMethod.finalizeSentence(DependencyStructure dependencyGraph)
           
 

Uses of DependencyStructure in org.maltparser.ml.libsvm
 

Methods in org.maltparser.ml.libsvm with parameters of type DependencyStructure
 void Libsvm.finalizeSentence(DependencyStructure dependencyGraph)
           
 

Uses of DependencyStructure in org.maltparser.ml.libsvm.malt04
 

Methods in org.maltparser.ml.libsvm.malt04 with parameters of type DependencyStructure
 void LibsvmMalt04.finalizeSentence(DependencyStructure dependencyGraph)
           
 

Uses of DependencyStructure in org.maltparser.parser
 

Methods in org.maltparser.parser with parameters of type DependencyStructure
 void SingleMalt.oracleParse(DependencyStructure goldGraph, DependencyStructure oracleGraph)
           
 void DependencyParserConfig.oracleParse(DependencyStructure goldGraph, DependencyStructure oracleGraph)
           
 void SingleMalt.parse(DependencyStructure graph)
           
 void DependencyParserConfig.parse(DependencyStructure graph)
           
 

Uses of DependencyStructure in org.maltparser.parser.algorithm
 

Methods in org.maltparser.parser.algorithm that return DependencyStructure
 DependencyStructure ParsingAlgorithm.oracleParse(DependencyStructure goldDependencyGraph, DependencyStructure parseDependencyGraph)
           
 DependencyStructure ParsingAlgorithm.parse(DependencyStructure parseDependencyGraph)
           
 

Methods in org.maltparser.parser.algorithm with parameters of type DependencyStructure
 DependencyStructure ParsingAlgorithm.oracleParse(DependencyStructure goldDependencyGraph, DependencyStructure parseDependencyGraph)
           
 DependencyStructure ParsingAlgorithm.parse(DependencyStructure parseDependencyGraph)
           
 

Uses of DependencyStructure in org.maltparser.parser.algorithm.covington
 

Methods in org.maltparser.parser.algorithm.covington that return DependencyStructure
 DependencyStructure Covington.oracleParse(DependencyStructure goldDependencyGraph, DependencyStructure parseDependencyGraph)
           
 DependencyStructure Covington.parse(DependencyStructure parseDependencyGraph)
           
 

Methods in org.maltparser.parser.algorithm.covington with parameters of type DependencyStructure
protected  boolean Covington.checkParserAction(DependencyStructure dg)
           
 DependencyStructure Covington.oracleParse(DependencyStructure goldDependencyGraph, DependencyStructure parseDependencyGraph)
           
protected  void Covington.oraclePredict(DependencyStructure gold)
           
 DependencyStructure Covington.parse(DependencyStructure parseDependencyGraph)
           
protected  void Covington.transition(DependencyStructure parseDependencyGraph)
           
protected  void CovingtonProjective.updateLeft(DependencyStructure dg, int trans)
           
protected  void CovingtonNonProjective.updateLeft(DependencyStructure dg, int trans)
           
protected abstract  void Covington.updateLeft(DependencyStructure dg, int trans)
           
 

Uses of DependencyStructure in org.maltparser.parser.algorithm.nivre
 

Methods in org.maltparser.parser.algorithm.nivre that return DependencyStructure
 DependencyStructure Nivre.oracleParse(DependencyStructure goldDependencyGraph, DependencyStructure parseDependencyGraph)
           
 DependencyStructure Nivre.parse(DependencyStructure parseDependencyGraph)
           
 

Methods in org.maltparser.parser.algorithm.nivre with parameters of type DependencyStructure
protected  boolean NivreStandard.checkParserAction(DependencyStructure dg)
           
protected  boolean NivreEager.checkParserAction(DependencyStructure dg)
           
protected abstract  boolean Nivre.checkParserAction(DependencyStructure dg)
           
protected  void Nivre.clear(DependencyStructure dg)
           
protected  LabelSet Nivre.getArcLabels(DependencyStructure parseDependencyGraph)
           
 DependencyStructure Nivre.oracleParse(DependencyStructure goldDependencyGraph, DependencyStructure parseDependencyGraph)
           
protected  void NivreStandard.oraclePredict(DependencyStructure gold, DependencyStructure parseDependencyGraph)
           
protected  void NivreEager.oraclePredict(DependencyStructure gold, DependencyStructure parseDependencyGraph)
           
protected abstract  void Nivre.oraclePredict(DependencyStructure gold, DependencyStructure parseDependencyGraph)
           
 DependencyStructure Nivre.parse(DependencyStructure parseDependencyGraph)
           
protected  void NivreStandard.transition(DependencyStructure parseDependencyGraph)
           
protected  void NivreEager.transition(DependencyStructure parseDependencyGraph)
           
protected abstract  void Nivre.transition(DependencyStructure dg)
           
 

Uses of DependencyStructure in org.maltparser.parser.algorithm.nivre.malt04
 

Methods in org.maltparser.parser.algorithm.nivre.malt04 that return DependencyStructure
 DependencyStructure NivreMalt04.oracleParse(DependencyStructure goldDependencyGraph, DependencyStructure parseDependencyGraph)
           
 DependencyStructure NivreMalt04.parse(DependencyStructure parseDependencyGraph)
           
 

Methods in org.maltparser.parser.algorithm.nivre.malt04 with parameters of type DependencyStructure
protected  boolean NivreStandardMalt04.checkParserAction(DependencyStructure parseDependencyGraph)
           
protected abstract  boolean NivreMalt04.checkParserAction(DependencyStructure dg)
           
protected  boolean NivreEagerMalt04.checkParserAction(DependencyStructure dg)
           
 DependencyStructure NivreMalt04.oracleParse(DependencyStructure goldDependencyGraph, DependencyStructure parseDependencyGraph)
           
protected  void NivreStandardMalt04.oraclePredict(DependencyStructure gold, DependencyStructure parseDependencyGraph)
           
protected abstract  void NivreMalt04.oraclePredict(DependencyStructure gold, DependencyStructure parseDependencyGraph)
           
protected  void NivreEagerMalt04.oraclePredict(DependencyStructure gold, DependencyStructure parseDependencyGraph)
           
 DependencyStructure NivreMalt04.parse(DependencyStructure parseDependencyGraph)
           
protected  void NivreStandardMalt04.transition(DependencyStructure parseDependencyGraph)
           
protected abstract  void NivreMalt04.transition(DependencyStructure dg)
           
protected  void NivreEagerMalt04.transition(DependencyStructure parseDependencyGraph)
           
 

Uses of DependencyStructure in org.maltparser.parser.guide
 

Methods in org.maltparser.parser.guide with parameters of type DependencyStructure
 void SingleGuide.finalizeSentence(DependencyStructure dependencyGraph)
           
 void Model.finalizeSentence(DependencyStructure dependencyGraph)
           
 void Guide.finalizeSentence(DependencyStructure dependencyGraph)
           
 

Uses of DependencyStructure in org.maltparser.parser.guide.decision
 

Methods in org.maltparser.parser.guide.decision with parameters of type DependencyStructure
 void SeqDecisionModel.finalizeSentence(DependencyStructure dependencyGraph)
           
 void OneDecisionModel.finalizeSentence(DependencyStructure dependencyGraph)
           
 void BranchedDecisionModel.finalizeSentence(DependencyStructure dependencyGraph)
           
 

Uses of DependencyStructure in org.maltparser.parser.guide.instance
 

Methods in org.maltparser.parser.guide.instance with parameters of type DependencyStructure
 void FeatureDivideModel.finalizeSentence(DependencyStructure dependencyGraph)
           
 void AtomicModel.finalizeSentence(DependencyStructure dependencyGraph)
           
 

Uses of DependencyStructure in org.maltparser.transform.pseudo
 

Methods in org.maltparser.transform.pseudo with parameters of type DependencyStructure
 void PseudoProjectivity.deprojectivize(DependencyStructure pdg)
           
 void PseudoProjectivity.mergeArclabels(DependencyStructure pdg)
           
 void PseudoProjectivity.projectivize(DependencyStructure pdg)
           
 void PseudoProjectivity.splitArclabels(DependencyStructure pdg)
           
 


MaltParser 1.2

Copyright 2007-2008 Johan Hall, Jens Nilsson and Joakim Nivre.