mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-25 17:36:30 +03:00
Update docs for new version [ci skip]
This commit is contained in:
parent
f0e7da6478
commit
23d5b4ff5b
|
@ -346,6 +346,7 @@ p
|
|||
|
||||
+row
|
||||
+cell #[code --verbose]
|
||||
+tag-new("2.0.13")
|
||||
+cell flag
|
||||
+cell Show more detail message during training.
|
||||
|
||||
|
|
|
@ -349,6 +349,30 @@ p Retokenize the document, such that the span is merged into a single token.
|
|||
+cell #[code Token]
|
||||
+cell The newly merged token.
|
||||
|
||||
+h(2, "ents") Span.ents
|
||||
+tag property
|
||||
+tag-model("NER")
|
||||
|
||||
p
|
||||
| Iterate over the entities in the span. Yields named-entity
|
||||
| #[code Span] objects, if the entity recognizer has been applied to the
|
||||
| parent document.
|
||||
|
||||
+aside-code("Example").
|
||||
doc = nlp(u'Mr. Best flew to New York on Saturday morning.')
|
||||
span = doc[0:6]
|
||||
ents = list(span.ents)
|
||||
assert ents[0].label == 346
|
||||
assert ents[0].label_ == 'PERSON'
|
||||
assert ents[0].text == 'Mr. Best'
|
||||
|
||||
+table(["Name", "Type", "Description"])
|
||||
+row("foot")
|
||||
+cell yields
|
||||
+cell #[code Span]
|
||||
+cell Entities in the document.
|
||||
|
||||
|
||||
+h(2, "as_doc") Span.as_doc
|
||||
|
||||
p
|
||||
|
|
|
@ -27,17 +27,6 @@
|
|||
}
|
||||
},
|
||||
|
||||
"comparison": {
|
||||
"title": "Model Comparison",
|
||||
"teaser": "Compare spaCy's statistical models and their accuracy.",
|
||||
"tag": "experimental",
|
||||
"compare_models": true,
|
||||
"default_models": {
|
||||
"model1": "en_core_web_sm",
|
||||
"model2": "en_core_web_lg"
|
||||
}
|
||||
},
|
||||
|
||||
"MODELS": {
|
||||
"en": ["en_core_web_sm", "en_core_web_md", "en_core_web_lg", "en_vectors_web_lg"],
|
||||
"de": ["de_core_news_sm"],
|
||||
|
@ -122,6 +111,8 @@
|
|||
"fa": "Persian",
|
||||
"ur": "Urdu",
|
||||
"tt": "Tatar",
|
||||
"te": "Telugu",
|
||||
"si": "Sinhala",
|
||||
"ga": "Irish",
|
||||
"bn": "Bengali",
|
||||
"hi": "Hindi",
|
||||
|
|
Loading…
Reference in New Issue
Block a user