Merge branch 'master' of ssh://github.com/explosion/spaCy

This commit is contained in:
Matthew Honnibal 2016-11-25 16:15:08 +01:00
commit 6c1b2c0c2e
2 changed files with 28 additions and 32 deletions

View File

@ -71,7 +71,7 @@ p
+h(2, "named-entities") Named Entity Recognition +h(2, "named-entities") Named Entity Recognition
+table(["Entity Type", "Description"]) +table([ "Type", "Description" ])
+row +row
+cell #[code PERSON] +cell #[code PERSON]
+cell People, including fictional. +cell People, including fictional.
@ -81,8 +81,8 @@ p
+cell Nationalities or religious or political groups. +cell Nationalities or religious or political groups.
+row +row
+cell #[code FAC] +cell #[code FACILITY]
+cell Facilities, such as buildings, airports, highways, bridges, etc. +cell Buildings, airports, highways, bridges, etc.
+row +row
+cell #[code ORG] +cell #[code ORG]
@ -98,7 +98,7 @@ p
+row +row
+cell #[code PRODUCT] +cell #[code PRODUCT]
+cell Vehicles, weapons, foods, etc. (Not services) +cell Objects, vehicles, foods, etc. (Not services.)
+row +row
+cell #[code EVENT] +cell #[code EVENT]
@ -108,41 +108,37 @@ p
+cell #[code WORK_OF_ART] +cell #[code WORK_OF_ART]
+cell Titles of books, songs, etc. +cell Titles of books, songs, etc.
+row
+cell #[code LAW]
+cell Named documents made into laws
+row +row
+cell #[code LANGUAGE] +cell #[code LANGUAGE]
+cell Any named language +cell Any named language.
p The following values are also annotated in a style similar to names: p The following values are also annotated in a style similar to names:
+table(["Entity Type", "Description"]) +table([ "Type", "Description" ])
+row +row
+cell #[code DATE] +cell #[code DATE]
+cell Absolute or relative dates or periods +cell Absolute or relative dates or periods.
+row +row
+cell #[code TIME] +cell #[code TIME]
+cell Times smaller than a day +cell Times smaller than a day.
+row +row
+cell #[code PERCENT] +cell #[code PERCENT]
+cell Percentage (including “%”) +cell Percentage, including "%".
+row +row
+cell #[code MONEY] +cell #[code MONEY]
+cell Monetary values, including unit +cell Monetary values, including unit.
+row +row
+cell #[code QUANTITY] +cell #[code QUANTITY]
+cell Measurements, as of weight or distance +cell Measurements, as of weight or distance.
+row +row
+cell #[code ORDINAL] +cell #[code ORDINAL]
+cell "first", "second" +cell "first", "second", etc.
+row +row
+cell #[code CARDINAL] +cell #[code CARDINAL]
+cell Numerals that do not fall under another type +cell Numerals that do not fall under another type.

View File

@ -124,11 +124,11 @@ p
+table([ "Type", "Description" ]) +table([ "Type", "Description" ])
+row +row
+cell #[code PERSON] +cell #[code PERSON]
+cell People, including fictional +cell People, including fictional.
+row +row
+cell #[code NORP] +cell #[code NORP]
+cell Nationalities or religious or political groups +cell Nationalities or religious or political groups.
+row +row
+cell #[code FACILITY] +cell #[code FACILITY]
@ -140,15 +140,15 @@ p
+row +row
+cell #[code GPE] +cell #[code GPE]
+cell Countries, cities, states +cell Countries, cities, states.
+row +row
+cell #[code LOC] +cell #[code LOC]
+cell Non-GPE locations, mountain ranges, bodies of water +cell Non-GPE locations, mountain ranges, bodies of water.
+row +row
+cell #[code PRODUCT] +cell #[code PRODUCT]
+cell Objects, vehicles, foods, etc. (not services) +cell Objects, vehicles, foods, etc. (Not services.)
+row +row
+cell #[code EVENT] +cell #[code EVENT]
@ -167,23 +167,23 @@ p
+table([ "Type", "Description" ]) +table([ "Type", "Description" ])
+row +row
+cell #[code DATE] +cell #[code DATE]
+cell Absolute or relative dates or periods +cell Absolute or relative dates or periods.
+row +row
+cell #[code TIME] +cell #[code TIME]
+cell Times smaller than a day +cell Times smaller than a day.
+row +row
+cell #[code PERCENT] +cell #[code PERCENT]
+cell Percentage, including "%" +cell Percentage, including "%".
+row +row
+cell #[code MONEY] +cell #[code MONEY]
+cell Monetary values, including unit +cell Monetary values, including unit.
+row +row
+cell #[code QUANTITY] +cell #[code QUANTITY]
+cell Measurements, as of weight or distance +cell Measurements, as of weight or distance.
+row +row
+cell #[code ORDINAL] +cell #[code ORDINAL]
@ -191,7 +191,7 @@ p
+row +row
+cell #[code CARDINAL] +cell #[code CARDINAL]
+cell Numerals that do not fall under another type +cell Numerals that do not fall under another type.
+aside("Install") +aside("Install")
| The #[+api("load") spacy.load()] function configures a pipeline that | The #[+api("load") spacy.load()] function configures a pipeline that
@ -250,19 +250,19 @@ p
+table([ "Tag", "Description" ]) +table([ "Tag", "Description" ])
+row +row
+cell #[code #[span.u-color-theme B] EGIN] +cell #[code #[span.u-color-theme B] EGIN]
+cell The first token of a multi-token entity +cell The first token of a multi-token entity.
+row +row
+cell #[code #[span.u-color-theme I] N] +cell #[code #[span.u-color-theme I] N]
+cell An inner token of a multi-token entity +cell An inner token of a multi-token entity.
+row +row
+cell #[code #[span.u-color-theme L] AST] +cell #[code #[span.u-color-theme L] AST]
+cell The final token of a multi-token entity +cell The final token of a multi-token entity.
+row +row
+cell #[code #[span.u-color-theme U] NIT] +cell #[code #[span.u-color-theme U] NIT]
+cell A single-token entity +cell A single-token entity.
+row +row
+cell #[code #[span.u-color-theme O] UT] +cell #[code #[span.u-color-theme O] UT]