-
Notifications
You must be signed in to change notification settings - Fork 5
Grammarian
jrising edited this page Nov 6, 2012
·
1 revision
Grammarian contains the interfaces and definitions for the grammar and morphology plugins-- part of speech tagging, grammar parsing, and noun and verb morphology.
-
POSTagger
: Contains interfaces for part of speech tagging, the part of speech data source, and ease-of-access functions. -
GrammarParser
: Contains interfaces for grammar parsing and paraphrasing actions; static methods for working withIParsedPhrase
s, and aPlugin Environment
wrapper for easy use of grammar parsing plugins. -
IParsedPhrase
: Interface for a parsed phrase structure. -
GroupPhrase
andWordPhrase
: Straight implementations ofIParsedPhrase
, to be used sparingly. More sophisticated implementations will have different behaviors for different parts of speech on other methods. -
Nouns
andVerbs
: Interface to noun and verbs morphology plugins. Both define argument types for plugin actions, morphology information sources, and access-ease functions. Nouns also defines functions for working with pronouns. Verbs defines the morphology of the verbs to be, to do, and to have.
-