<!--- Provide a general summary of your changes in the title. -->
## Description
The new website is implemented using [Gatsby](https://www.gatsbyjs.org) with [Remark](https://github.com/remarkjs/remark) and [MDX](https://mdxjs.com/). This allows authoring content in **straightforward Markdown** without the usual limitations. Standard elements can be overwritten with powerful [React](http://reactjs.org/) components and wherever Markdown syntax isn't enough, JSX components can be used. Hopefully, this update will also make it much easier to contribute to the docs. Once this PR is merged, I'll implement auto-deployment via [Netlify](https://netlify.com) on a specific branch (to avoid building the website on every PR). There's a bunch of other cool stuff that the new setup will allow us to do – including writing front-end tests, service workers, offline support, implementing a search and so on.
This PR also includes various new docs pages and content.
Resolves#3270. Resolves#3222. Resolves#2947. Resolves#2837.
### Types of change
enhancement
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
The EntityRuler lets you add spans to the Doc.ents using
token-based rules or exact phrase matches. It can be combined with the
statistical EntityRecognizer to boost accuracy, or
used on its own to implement a purely rule-based entity recognition system.
After initialization, the component is typically added to the processing
pipeline using nlp.add_pipe.
EntityRuler.__init__
Initialize the entity ruler. If patterns are supplied here, they need to be a
list of dictionaries with a "label" and "pattern" key. A pattern can either
be a token pattern (list) or a phrase pattern (string). For example:
{'label': 'ORG', 'pattern': 'Apple'}.
Example
# Construction via create_piperuler=nlp.create_pipe("entityruler")# Construction from classfromspacy.pipelineimportEntityRulerruler=EntityRuler(nlp,overwrite_ents=True)
Name
Type
Description
nlp
Language
The shared nlp object to pass the vocab to the matchers and process phrase patterns.
patterns
iterable
Optional patterns to load in.
overwrite_ents
bool
If existing entities are present, e.g. entities added by the model, overwrite them by matches if necessary. Defaults to False.
**cfg
-
Other config parameters. If pipeline component is loaded as part of a model pipeline, this will include all keyword arguments passed to spacy.load.
RETURNS
EntityRuler
The newly constructed object.
EntityRuler._\len__
The number of all patterns added to the entity ruler.
Find matches in the Doc and add them to the doc.ents. Typically, this
happens automatically after the component has been added to the pipeline using
nlp.add_pipe. If the entity ruler was initialized
with overwrite_ents=True, existing entities will be replaced if they overlap
with the matches.
Example
ruler=EntityRuler(nlp)ruler.add_patterns([{"label":"ORG","pattern":"Apple"}])nlp.add_pipe(ruler)doc=nlp("A text about Apple.")ents=[(ent.text,ent.label_)forentindoc.ents]assertents==[("Apple","ORG")]
Name
Type
Description
doc
Doc
The Doc object to process, e.g. the Doc in the pipeline.
RETURNS
Doc
The modified Doc with added entities, if available.
EntityRuler.add_patterns
Add patterns to the entity ruler. A pattern can either be a token pattern (list
of dicts) or a phrase pattern (string). For more details, see the usage guide on
rule-based matching.