mirror of
https://github.com/explosion/spaCy.git
synced 2025-06-04 13:13:10 +03:00
Add notes on spacy.explain() to annotation docs
This commit is contained in:
parent
e3f23f9d91
commit
b22b18a019
|
@ -38,6 +38,11 @@ p
|
||||||
|
|
||||||
+h(2, "pos-tagging") Part-of-speech Tagging
|
+h(2, "pos-tagging") Part-of-speech Tagging
|
||||||
|
|
||||||
|
+infobox("Tip: Understanding tags")
|
||||||
|
| In spaCy v1.8.3+, you can also use #[code spacy.explain()] to get the
|
||||||
|
| description for the string representation of a tag. For example,
|
||||||
|
| #[code spacy.explain("RB")] will return "adverb".
|
||||||
|
|
||||||
include _annotation/_pos-tags
|
include _annotation/_pos-tags
|
||||||
|
|
||||||
+h(2, "lemmatization") Lemmatization
|
+h(2, "lemmatization") Lemmatization
|
||||||
|
@ -65,10 +70,20 @@ p
|
||||||
|
|
||||||
+h(2, "dependency-parsing") Syntactic Dependency Parsing
|
+h(2, "dependency-parsing") Syntactic Dependency Parsing
|
||||||
|
|
||||||
|
+infobox("Tip: Understanding labels")
|
||||||
|
| In spaCy v1.8.3+, you can also use #[code spacy.explain()] to get the
|
||||||
|
| description for the string representation of a label. For example,
|
||||||
|
| #[code spacy.explain("prt")] will return "particle".
|
||||||
|
|
||||||
include _annotation/_dep-labels
|
include _annotation/_dep-labels
|
||||||
|
|
||||||
+h(2, "named-entities") Named Entity Recognition
|
+h(2, "named-entities") Named Entity Recognition
|
||||||
|
|
||||||
|
+infobox("Tip: Understanding entity types")
|
||||||
|
| In spaCy v1.8.3+, you can also use #[code spacy.explain()] to get the
|
||||||
|
| description for the string representation of an entity label. For example,
|
||||||
|
| #[code spacy.explain("LANGUAGE")] will return "any named language".
|
||||||
|
|
||||||
include _annotation/_named-entities
|
include _annotation/_named-entities
|
||||||
|
|
||||||
+h(2, "json-input") JSON input format for training
|
+h(2, "json-input") JSON input format for training
|
||||||
|
|
Loading…
Reference in New Issue
Block a user