spaCy/website/docs/_annotation-specs.jade
2016-10-03 20:19:13 +02:00

168 lines
5.8 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//- ----------------------------------
//- 💫 DOCS > ANNOTATION SPECS
//- ----------------------------------
+section("annotation")
+h(2, "annotation").
Annotation Specifications
p.
This document describes the target annotations spaCy is trained to predict.
This is currently a work in progress. Please ask questions on the
#[+a("https://github.com/" + SOCIAL.github + "/spaCy/issues") issue tracker],
so that the answers can be integrated here to improve the documentation.
+section("annotation-tokenization")
+h(3, "annotation-tokenization").
Tokenization
p.
Tokenization standards are based on the OntoNotes 5 corpus. The
tokenizer differs from most by including tokens for significant
whitespace. Any sequence of whitespace characters beyond a single
space (' ') is included as a token. For instance:
+code.
from spacy.en import English
nlp = English(parser=False)
tokens = nlp('Some\nspaces and\ttab characters')
print([t.orth_ for t in tokens])
p Which produces:
+code.
['Some', '\n', 'spaces', ' ', 'and', '\t', 'tab', 'characters']
p.
The whitespace tokens are useful for much the same reason punctuation
is it's often an important delimiter in the text. By preserving it
in the token output, we are able to maintain a simple alignment between
the tokens and the original string, and we ensure that no information
is lost during processing.
+section("annotation-sentence-boundary")
+h(3, "annotation-sentence-boundary").
Sentence boundary detection
p.
Sentence boundaries are calculated from the syntactic parse tree, so
features such as punctuation and capitalisation play an important but
non-decisive role in determining the sentence boundaries. Usually
this means that the sentence boundaries will at least coincide with
clause boundaries, even given poorly punctuated text.
+section("annotation-pos-tagging")
+h(3, "annotation-pos-tagging").
Part-of-speech Tagging
p.
The part-of-speech tagger uses the OntoNotes 5 version of the Penn
Treebank tag set. We also map the tags to the simpler Google Universal
POS Tag set. Details #[+a("https://github.com/" + SOCIAL.github + "/spaCy/blob/master/spacy/tagger.pyx") here].
+section("annotation-lemmatization")
+h(3, "annotation-lemmatization").
Lemmatization
p A "lemma" is the uninflected form of a word. In English, this means:
+list
+item #[strong Adjectives:] The form like "happy", not "happier" or "happiest"
+item #[strong Adverbs:] The form like "badly", not "worse" or "worst"
+item #[strong Nouns:] The form like "dog", not "dogs"; like "child", not "children"
+item #[strong Verbs:] The form like "write", not "writes", "writing", "wrote" or "written"
p.
The lemmatization data is taken from WordNet. However, we also add a
special case for pronouns: all pronouns are lemmatized to the special
token #[code -PRON-].
+section("annotation-dependency")
+h(3, "annotation-dependency").
Syntactic Dependency Parsing
p.
The parser is trained on data produced by the ClearNLP converter.
Details of the annotation scheme can be found
#[+a("http://www.mathcs.emory.edu/~choi/doc/clear-dependency-2012.pdf") here].
+section("annotation-ner")
+h(3, "annotation-ner").
Named Entity Recognition
+table(["Entity Type", "Description"])
+row
+cell PERSON
+cell People, including fictional.
+row
+cell NORP
+cell Nationalities or religious or political groups.
+row
+cell FAC
+cell Facilities, such as buildings, airports, highways, bridges, etc.
+row
+cell ORG
+cell Companies, agencies, institutions, etc.
+row
+cell GPE
+cell Countries, cities, states.
+row
+cell LOC
+cell Non-GPE locations, mountain ranges, bodies of water.
+row
+cell PRODUCT
+cell Vehicles, weapons, foods, etc. (Not services)
+row
+cell EVENT
+cell Named hurricanes, battles, wars, sports events, etc.
+row
+cell WORK_OF_ART
+cell Titles of books, songs, etc.
+row
+cell LAW
+cell Named documents made into laws
+row
+cell LANGUAGE
+cell Any named language
p The following values are also annotated in a style similar to names:
+table(["Entity Type", "Description"])
+row
+cell DATE
+cell Absolute or relative dates or periods
+row
+cell TIME
+cell Times smaller than a day
+row
+cell PERCENT
+cell Percentage (including “%”)
+row
+cell MONEY
+cell Monetary values, including unit
+row
+cell QUANTITY
+cell Measurements, as of weight or distance
+row
+cell ORDINAL
+cell "first", "second"
+row
+cell CARDINAL
+cell Numerals that do not fall under another type