MaltParser 1.0.3

Uses of Class
org.maltparser.core.graph.DependencyGraph

Packages that use DependencyGraph
org.maltparser.core.dataformat.writer Contains classes that writes a specific data format (e.g., a tab-separator writer). 
org.maltparser.core.graph Contains classes for building a dependency graph. 
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.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.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.instmodel Provides an interface for implementing different kinds of prediction strategies. 
org.maltparser.parser.guide.predmodel Contains classes for implementing different kinds of instance models. 
org.maltparser.transform Contains classes for performing pre-processing and post-processing transformations on dependency graphs. 
 

Uses of DependencyGraph in org.maltparser.core.dataformat.writer
 

Methods in org.maltparser.core.dataformat.writer with parameters of type DependencyGraph
 void TabWriter.writeSentence(DependencyGraph dependencyGraph)
           
 void DataWriter.writeSentence(DependencyGraph dependencyGraph)
           
 

Uses of DependencyGraph in org.maltparser.core.graph
 

Subclasses of DependencyGraph in org.maltparser.core.graph
 class SingleHeadedDependencyGraph
           
 

Uses of DependencyGraph in org.maltparser.ml
 

Methods in org.maltparser.ml with parameters of type DependencyGraph
 void LearningMethod.finalizeSentence(Sentence sentence, DependencyGraph dependencyGraph)
           
 

Uses of DependencyGraph in org.maltparser.ml.libsvm
 

Methods in org.maltparser.ml.libsvm with parameters of type DependencyGraph
 void Libsvm.finalizeSentence(Sentence sentence, DependencyGraph dependencyGraph)
           
 

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

Methods in org.maltparser.ml.libsvm.malt04 with parameters of type DependencyGraph
 void LibsvmMalt04.finalizeSentence(Sentence sentence, DependencyGraph dependencyGraph)
           
 

Uses of DependencyGraph in org.maltparser.parser.algorithm
 

Methods in org.maltparser.parser.algorithm that return DependencyGraph
 DependencyGraph ParsingAlgorithm.getDependencyGraph()
           
 DependencyGraph ParsingAlgorithm.oracleParse(DependencyGraph goldDependencyGraph)
           
 DependencyGraph ParsingAlgorithm.parse()
           
 

Methods in org.maltparser.parser.algorithm with parameters of type DependencyGraph
 DependencyGraph ParsingAlgorithm.oracleParse(DependencyGraph goldDependencyGraph)
           
 

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

Fields in org.maltparser.parser.algorithm.covington declared as DependencyGraph
protected  DependencyGraph Covington.dependencyGraph
           
 

Methods in org.maltparser.parser.algorithm.covington that return DependencyGraph
 DependencyGraph Covington.getDependencyGraph()
           
 DependencyGraph Covington.oracleParse(DependencyGraph goldDependencyGraph)
           
 DependencyGraph Covington.parse()
           
 

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

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

Fields in org.maltparser.parser.algorithm.nivre declared as DependencyGraph
protected  DependencyGraph Nivre.dependencyGraph
           
 

Methods in org.maltparser.parser.algorithm.nivre that return DependencyGraph
 DependencyGraph Nivre.getDependencyGraph()
           
 DependencyGraph Nivre.oracleParse(DependencyGraph goldDependencyGraph)
           
 DependencyGraph Nivre.parse()
           
 

Methods in org.maltparser.parser.algorithm.nivre with parameters of type DependencyGraph
protected  boolean NivreStandard.checkParserAction(DependencyGraph dg)
           
protected  boolean NivreEager.checkParserAction(DependencyGraph dg)
           
protected abstract  boolean Nivre.checkParserAction(DependencyGraph dg)
           
 DependencyGraph Nivre.oracleParse(DependencyGraph goldDependencyGraph)
           
protected  void NivreStandard.oraclePredict(DependencyGraph gold)
           
protected  void NivreEager.oraclePredict(DependencyGraph gold)
           
protected abstract  void Nivre.oraclePredict(DependencyGraph gold)
           
protected  void NivreStandard.transition(DependencyGraph dg)
           
protected  void NivreEager.transition(DependencyGraph dg)
           
protected abstract  void Nivre.transition(DependencyGraph dg)
           
 

Uses of DependencyGraph in org.maltparser.parser.guide
 

Methods in org.maltparser.parser.guide with parameters of type DependencyGraph
 void GuideModel.finalizeSentence(Sentence sentence, DependencyGraph dependencyGraph)
           
 void Guide.finalizeSentence(Sentence sentence, DependencyGraph dependencyGraph)
          Used when a sentence has been processed during learning.
 

Uses of DependencyGraph in org.maltparser.parser.guide.instmodel
 

Methods in org.maltparser.parser.guide.instmodel with parameters of type DependencyGraph
 void FeatureDivideModel.finalizeSentence(Sentence sentence, DependencyGraph dependencyGraph)
           
 void AtomicModel.finalizeSentence(Sentence sentence, DependencyGraph dependencyGraph)
           
 

Uses of DependencyGraph in org.maltparser.parser.guide.predmodel
 

Methods in org.maltparser.parser.guide.predmodel with parameters of type DependencyGraph
 void CombinedPredictionModel.finalizeSentence(Sentence sentence, DependencyGraph dependencyGraph)
           
 

Uses of DependencyGraph in org.maltparser.transform
 

Methods in org.maltparser.transform with parameters of type DependencyGraph
 void PseudoProjectivity.deprojectivize(DependencyGraph pdg)
           
 boolean PseudoProjectivity.isProjective(DependencyGraph pdg)
           
 void PseudoProjectivity.projectivize(DependencyGraph pdg)
           
 


MaltParser 1.0.3

Copyright 2007 Johan Hall, Jens Nilsson and Joakim Nivre.