MaltParser 1.0.3

Uses of Class
org.maltparser.core.sentence.Sentence

Packages that use Sentence
org.maltparser.core.config Contains classes and an interface for handling parsing scenarios. 
org.maltparser.core.dataformat.reader Contains classes that reads a specific data format (e.g., a tab-separator reader). 
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.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. 
 

Uses of Sentence in org.maltparser.core.config
 

Fields in org.maltparser.core.config declared as Sentence
protected  Sentence SingleMaltConfiguration.sentence
           
 

Methods in org.maltparser.core.config that return Sentence
 Sentence SingleMaltConfiguration.getSentence()
          Returns the sentence
 

Uses of Sentence in org.maltparser.core.dataformat.reader
 

Methods in org.maltparser.core.dataformat.reader that return Sentence
 Sentence TabReader.getSentence()
           
 

Methods in org.maltparser.core.dataformat.reader with parameters of type Sentence
 void TabReader.setSentence(Sentence sentence)
           
 

Constructors in org.maltparser.core.dataformat.reader with parameters of type Sentence
TabReader(Sentence sentence)
           
 

Uses of Sentence in org.maltparser.core.graph
 

Fields in org.maltparser.core.graph declared as Sentence
protected  Sentence DependencyGraph.sentence
           
 

Methods in org.maltparser.core.graph that return Sentence
 Sentence DependencyGraph.getSentence()
           
 

Methods in org.maltparser.core.graph with parameters of type Sentence
protected  void DependencyGraph.setSentence(Sentence sentence)
           
 

Constructors in org.maltparser.core.graph with parameters of type Sentence
DependencyGraph(Sentence sentence, String rootLabel)
           
SingleHeadedDependencyGraph(Sentence sentence, String rootLabel)
           
 

Uses of Sentence in org.maltparser.ml
 

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

Uses of Sentence in org.maltparser.ml.libsvm
 

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

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

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

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

Fields in org.maltparser.parser.algorithm.covington declared as Sentence
protected  Sentence Covington.sentence
           
 

Constructors in org.maltparser.parser.algorithm.covington with parameters of type Sentence
Covington(SingleMaltConfiguration configuration, Sentence sentence)
           
CovingtonNonProjective(SingleMaltConfiguration configuration, Sentence sentence)
           
CovingtonProjective(SingleMaltConfiguration configuration, Sentence sentence)
           
 

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

Fields in org.maltparser.parser.algorithm.nivre declared as Sentence
protected  Sentence Nivre.sentence
           
 

Constructors in org.maltparser.parser.algorithm.nivre with parameters of type Sentence
Nivre(SingleMaltConfiguration configuration, Sentence sentence)
           
NivreEager(SingleMaltConfiguration configuration, Sentence sentence)
           
NivreStandard(SingleMaltConfiguration configuration, Sentence sentence)
           
 

Uses of Sentence in org.maltparser.parser.guide
 

Methods in org.maltparser.parser.guide with parameters of type Sentence
 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 Sentence in org.maltparser.parser.guide.instmodel
 

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

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

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


MaltParser 1.0.3

Copyright 2007 Johan Hall, Jens Nilsson and Joakim Nivre.