This repository was archived by the owner on Feb 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Curator Annotation Identifiers and View Types
s3cur3 edited this page Aug 5, 2012
·
1 revision
The Curator Client identifies its annotations thus:
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
.
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 |
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 |
Name | Key in map returned by gettypeViews() | Our labeling |
---|---|---|
Illinois coref. analysis | coref | COREF |
None
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.