mirror of https://github.com/explosion/spaCy.git
fix capitalization for link
This commit is contained in:
parent
43cc6aea93
commit
2fa23b0304
|
@ -816,7 +816,7 @@ these pretrained weights files** in your
|
||||||
train your pipeline. This technique may be especially helpful if you have little
|
train your pipeline. This technique may be especially helpful if you have little
|
||||||
labelled data. See the usage docs on
|
labelled data. See the usage docs on
|
||||||
[pretraining](/usage/embeddings-transformers#pretraining) for more info. To read
|
[pretraining](/usage/embeddings-transformers#pretraining) for more info. To read
|
||||||
the raw text, a [`JsonlCorpus`](/api/top-level#JsonlCorpus) is typically used.
|
the raw text, a [`JsonlCorpus`](/api/top-level#jsonlcorpus) is typically used.
|
||||||
|
|
||||||
<Infobox title="Changed in v3.0" variant="warning">
|
<Infobox title="Changed in v3.0" variant="warning">
|
||||||
|
|
||||||
|
|
|
@ -148,7 +148,7 @@ This section defines a **dictionary** mapping of string keys to functions. Each
|
||||||
function takes an `nlp` object and yields [`Example`](/api/example) objects. By
|
function takes an `nlp` object and yields [`Example`](/api/example) objects. By
|
||||||
default, the two keys `train` and `dev` are specified and each refer to a
|
default, the two keys `train` and `dev` are specified and each refer to a
|
||||||
[`Corpus`](/api/top-level#Corpus). When pretraining, an additional `pretrain`
|
[`Corpus`](/api/top-level#Corpus). When pretraining, an additional `pretrain`
|
||||||
section is added that defaults to a [`JsonlCorpus`](/api/top-level#JsonlCorpus).
|
section is added that defaults to a [`JsonlCorpus`](/api/top-level#jsonlcorpus).
|
||||||
You can also register custom functions that return a callable.
|
You can also register custom functions that return a callable.
|
||||||
|
|
||||||
| Name | Description |
|
| Name | Description |
|
||||||
|
|
Loading…
Reference in New Issue