Curator Annotation Identifiers and View Types - ILCogCompCuratorToHadoop/CuratorHadoopInterface GitHub Wiki
The Curator Client identifies its annotations thus:
Before you look at this chart...
You probably don't need to think about this. If you have an AnnotationMode object (or can convert a String into one), just call its getViewType()
method. The ViewType enum returned thereby will tell you whether it's a PARSE
, CLUSTER
, LABEL
, or VIEW
.
Parse views
Name | Key in map returned by gettypeViews() | Our labeling |
---|---|---|
Stanford dependency tree | stanfordDep | STANFORD (same tool as Stanford Parser) |
Semantic role labeling (verb) | srl | VERB_SRL |
Semantic role labeling (noun) | nom | NOM_SRL |
Stanford parsing | stanfordParse | STANFORD |
Charniak parser | charniak | PARSE |
Label views
Name | Key in map returned by gettypeViews() | Our labeling |
---|---|---|
Tokenizer | tokens | TOKEN |
Extended named entities | ner-ext | NER |
Part of speech | pos | POS |
Chunking | chunk | CHUNK |
Wikifier | wikifier | WIKI |
Sentences | sentences | SENTENCE |
Cluster views
Name | Key in map returned by gettypeViews() | Our labeling |
---|---|---|
Illinois coref. analysis | coref | COREF |
General views
None
Other helpful links
The list of "up-and-running" Curator annotation tools may be helpful. Information about the Curator Data Structures is also available.
You may also be interested in the Dependency Tree for Annotation Tools.