Skip to content
This repository was archived by the owner on Feb 1, 2022. It is now read-only.

Curator Annotation Identifiers and View Types

s3cur3 edited this page Aug 5, 2012 · 1 revision

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.

Clone this wiki locally