Fix docs consistency [ci skip]

This commit is contained in:
Ines Montani 2019-09-14 16:23:37 +02:00
parent bbf7337eaf
commit 5c8b5e68ec
2 changed files with 5 additions and 4 deletions

View File

@ -140,6 +140,7 @@ Evaluate a model's pipeline components.
| `batch_size` | int | The batch size to use. |
| `scorer` | `Scorer` | Optional [`Scorer`](/api/scorer) to use. If not passed in, a new one will be created. |
| `component_cfg` <Tag variant="new">2.1</Tag> | dict | Config parameters for specific pipeline components, keyed by component name. |
| **RETURNS** | Scorer | The scorer containing the evaluation scores. |
## Language.begin_training {#begin_training tag="method"}

View File

@ -576,11 +576,11 @@ import DisplacyEntHtml from 'images/displacy-ent2.html'
## Entity Linking {#entity-linking}
To ground the named entities into the "real-world", spaCy provides functionality
To ground the named entities into the "real world", spaCy provides functionality
to perform entity linking, which resolves a textual entity to a unique
identifier from a knowledge base (KB).
The default model assigns WikiData identifiers, but you can create your own
identifier from a knowledge base (KB). The
[processing scripts](https://github.com/explosion/spaCy/tree/master/bin/wiki_entity_linking)
we provide use WikiData identifiers, but you can create your own
[`KnowledgeBase`](/api/kb) and
[train a new Entity Linking model](/usage/training#entity-linker) using that
custom-made KB.