MaltParser 1.3

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.liblinear Contains classes that interacts with the Liblinear learner. 
org.maltparser.ml.libsvm Contains classes that interacts with the LIBSVM learner. 
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.stack Implements the Stack parsing algorithms. 
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.liblinear
 

Methods in org.maltparser.ml.liblinear with parameters of type DependencyStructure
 void Liblinear.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.parser
 

Methods in org.maltparser.parser that return DependencyStructure
abstract  DependencyStructure ParserConfiguration.getDependencyGraph()
          Returns the dependency structure
abstract  DependencyStructure Parser.parse(DependencyStructure parseDependencyGraph)
          Parses the empty dependency graph
 DependencyStructure DeterministicParser.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 BatchTrainer.parse(DependencyStructure goldDependencyGraph, DependencyStructure parseDependencyGraph)
           
 

Methods in org.maltparser.parser with parameters of type DependencyStructure
protected  void Algorithm.copyEdges(DependencyStructure source, DependencyStructure target)
          Copies the edges of the source dependency structure to the target dependency structure
 void ParserState.initialize(DependencyStructure dependencyStructure)
           
 void SingleMalt.oracleParse(DependencyStructure goldGraph, DependencyStructure oracleGraph)
           
 void DependencyParserConfig.oracleParse(DependencyStructure goldGraph, DependencyStructure oracleGraph)
           
 void SingleMalt.parse(DependencyStructure graph)
           
abstract  DependencyStructure Parser.parse(DependencyStructure parseDependencyGraph)
          Parses the empty dependency graph
 DependencyStructure DeterministicParser.parse(DependencyStructure parseDependencyGraph)
           
 void DependencyParserConfig.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 BatchTrainer.parse(DependencyStructure goldDependencyGraph, DependencyStructure parseDependencyGraph)
           
abstract  void ParserConfiguration.setDependencyGraph(DependencyStructure dependencyStructure)
          Sets the dependency structure
 

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

Methods in org.maltparser.parser.algorithm.covington that return DependencyStructure
 DependencyStructure CovingtonConfig.getDependencyGraph()
           
 DependencyStructure CovingtonConfig.getDependencyStructure()
           
 

Methods in org.maltparser.parser.algorithm.covington with parameters of type DependencyStructure
 void CovingtonOracle.finalizeSentence(DependencyStructure dependencyGraph)
           
 GuideUserAction CovingtonOracle.predict(DependencyStructure gold, ParserConfiguration config)
           
 void CovingtonConfig.setDependencyGraph(DependencyStructure source)
           
 

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

Methods in org.maltparser.parser.algorithm.nivre that return DependencyStructure
 DependencyStructure NivreConfig.getDependencyGraph()
           
 DependencyStructure NivreConfig.getDependencyStructure()
           
 

Methods in org.maltparser.parser.algorithm.nivre with parameters of type DependencyStructure
 void ArcStandardOracle.finalizeSentence(DependencyStructure dependencyGraph)
           
 void ArcEagerOracle.finalizeSentence(DependencyStructure dependencyGraph)
           
 GuideUserAction ArcStandardOracle.predict(DependencyStructure gold, ParserConfiguration config)
           
 GuideUserAction ArcEagerOracle.predict(DependencyStructure gold, ParserConfiguration config)
           
 void NivreConfig.setDependencyGraph(DependencyStructure source)
           
 

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

Methods in org.maltparser.parser.algorithm.stack that return DependencyStructure
 DependencyStructure StackConfig.getDependencyGraph()
           
 DependencyStructure StackConfig.getDependencyStructure()
           
 

Methods in org.maltparser.parser.algorithm.stack with parameters of type DependencyStructure
 void SwapLazyOracle.finalizeSentence(DependencyStructure dependencyGraph)
           
 void SwapEagerOracle.finalizeSentence(DependencyStructure dependencyGraph)
           
 void ProjectiveOracle.finalizeSentence(DependencyStructure dependencyGraph)
           
 GuideUserAction SwapLazyOracle.predict(DependencyStructure gold, ParserConfiguration configuration)
           
 GuideUserAction SwapEagerOracle.predict(DependencyStructure gold, ParserConfiguration configuration)
           
 GuideUserAction ProjectiveOracle.predict(DependencyStructure gold, ParserConfiguration configuration)
           
 void StackConfig.setDependencyGraph(DependencyStructure source)
           
 

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)
           
 GuideUserAction OracleGuide.predict(DependencyStructure gold, ParserConfiguration config)
           
 

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.3

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