Package | Description |
---|---|
org.maltparser.parser |
The top package for Single Malt Parser.
|
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.
|
Modifier and Type | Field and Description |
---|---|
protected ClassifierGuide |
ParsingAlgorithm.classifierGuide |
Modifier and Type | Method and Description |
---|---|
ClassifierGuide |
ParsingAlgorithm.getGuide()
Returns the classifier guide.
|
ClassifierGuide |
SingleMalt.getGuide()
Returns the guide
|
Modifier and Type | Method and Description |
---|---|
void |
ParsingAlgorithm.setGuide(ClassifierGuide guide)
Sets the classifier guide
|
Modifier and Type | Class and Description |
---|---|
class |
SingleGuide
The guide is used by a parsing algorithm to predict the next parser action during parsing and to
add a instance to the training instance set during learning.
|
Modifier and Type | Method and Description |
---|---|
ClassifierGuide |
Model.getGuide() |
Modifier and Type | Method and Description |
---|---|
ClassifierGuide |
BranchedDecisionModel.getGuide() |
ClassifierGuide |
OneDecisionModel.getGuide() |
ClassifierGuide |
SeqDecisionModel.getGuide() |
Constructor and Description |
---|
BranchedDecisionModel(ClassifierGuide _guide) |
BranchedDecisionModel(ClassifierGuide _guide,
DecisionModel _parentDecisionModel,
java.lang.String _branchedDecisionSymbol) |
OneDecisionModel(ClassifierGuide _guide) |
OneDecisionModel(ClassifierGuide _guide,
DecisionModel _prevDecisionModel,
java.lang.String _branchedDecisionSymbol) |
SeqDecisionModel(ClassifierGuide _guide) |
SeqDecisionModel(ClassifierGuide _guide,
DecisionModel _prevDecisionModel,
java.lang.String _branchedDecisionSymbol) |
Modifier and Type | Method and Description |
---|---|
ClassifierGuide |
AtomicModel.getGuide()
Returns the feature vector used by this atomic model
|
ClassifierGuide |
FeatureDivideModel.getGuide() |
Copyright 2007-2017 Johan Hall, Jens Nilsson and Joakim Nivre.