spaCy/website/docs/api/corpus.md

178 lines
8.8 KiB
Markdown
Raw Normal View History

2020-07-04 15:23:10 +03:00
---
title: Corpus
teaser: An annotated corpus
tag: class
2020-09-12 18:05:10 +03:00
source: spacy/training/corpus.py
2020-07-04 15:23:10 +03:00
new: 3
---
2020-08-05 21:29:53 +03:00
This class manages annotated corpora and can be used for training and
2020-10-01 00:03:47 +03:00
development datasets in the [`DocBin`](/api/docbin) (`.spacy`) format. To
2020-08-05 21:29:53 +03:00
customize the data loading during training, you can register your own
2020-10-01 00:03:47 +03:00
[data readers and batchers](/usage/training#custom-code-readers-batchers). Also
see the usage guide on [data utilities](/usage/training#data) for more details
and examples.
2020-08-06 20:30:43 +03:00
## Config and implementation {#config}
`spacy.Corpus.v1` is a registered function that creates a `Corpus` of training
or evaluation data. It takes the same arguments as the `Corpus` class and
returns a callable that yields [`Example`](/api/example) objects. You can
replace it with your own registered function in the
2020-08-18 13:04:05 +03:00
[`@readers` registry](/api/top-level#registry) to customize the data loading and
2020-08-06 20:30:43 +03:00
streaming.
> #### Example config
>
> ```ini
> [paths]
> train = "corpus/train.spacy"
>
> [corpora.train]
2020-08-06 20:30:43 +03:00
> @readers = "spacy.Corpus.v1"
> path = ${paths.train}
2020-08-06 20:30:43 +03:00
> gold_preproc = false
> max_length = 0
> limit = 0
2020-09-30 16:16:00 +03:00
> augmenter = null
2020-08-06 20:30:43 +03:00
> ```
2020-09-30 16:16:00 +03:00
| Name | Description |
| --------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `path` | The directory or filename to read from. Expects data in spaCy's binary [`.spacy` format](/api/data-formats#binary-training). ~~Path~~ |
|  `gold_preproc` | Whether to set up the Example object with gold-standard sentences and tokens for the predictions. See [`Corpus`](/api/corpus#init) for details. ~~bool~~ |
| `max_length` | Maximum document length. Longer documents will be split into sentences, if sentence boundaries are available. Defaults to `0` for no limit. ~~int~~ |
| `limit` | Limit corpus to a subset of examples, e.g. for debugging. Defaults to `0` for no limit. ~~int~~ |
| `augmenter` | Apply some simply data augmentation, where we replace tokens with variations. This is especially useful for punctuation and case replacement, to help generalize beyond corpora that don't have smart-quotes, or only have smart quotes, etc. Defaults to `None`. ~~Optional[Callable]~~ |
2020-08-06 20:30:43 +03:00
```python
2020-09-12 18:05:10 +03:00
%%GITHUB_SPACY/spacy/training/corpus.py
2020-08-06 20:30:43 +03:00
```
2020-07-04 15:23:10 +03:00
## Corpus.\_\_init\_\_ {#init tag="method"}
2020-08-05 21:29:53 +03:00
Create a `Corpus` for iterating [Example](/api/example) objects from a file or
directory of [`.spacy` data files](/api/data-formats#binary-training). The
`gold_preproc` setting lets you specify whether to set up the `Example` object
with gold-standard sentences and tokens for the predictions. Gold preprocessing
helps the annotations align to the tokenization, and may result in sequences of
more consistent length. However, it may reduce runtime accuracy due to
train/test skew.
2020-07-04 15:23:10 +03:00
2020-07-29 12:36:42 +03:00
> #### Example
>
> ```python
> from spacy.training import Corpus
2020-07-29 12:36:42 +03:00
>
2020-08-05 21:29:53 +03:00
> # With a single file
> corpus = Corpus("./data/train.spacy")
2020-07-29 12:36:42 +03:00
>
2020-08-05 21:29:53 +03:00
> # With a directory
> corpus = Corpus("./data", limit=10)
2020-07-29 12:36:42 +03:00
> ```
2020-07-04 15:23:10 +03:00
2020-08-17 17:45:24 +03:00
| Name | Description |
| --------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
| `path` | The directory or filename to read from. ~~Union[str, Path]~~ |
| _keyword-only_ | |
|  `gold_preproc` | Whether to set up the Example object with gold-standard sentences and tokens for the predictions. Defaults to `False`. ~~bool~~ |
| `max_length` | Maximum document length. Longer documents will be split into sentences, if sentence boundaries are available. Defaults to `0` for no limit. ~~int~~ |
| `limit` | Limit corpus to a subset of examples, e.g. for debugging. Defaults to `0` for no limit. ~~int~~ |
2020-09-30 16:16:00 +03:00
| `augmenter` | Optional data augmentation callback. ~~Callable[[Language, Example], Iterable[Example]]~~ |
2020-07-04 15:23:10 +03:00
2020-08-05 21:29:53 +03:00
## Corpus.\_\_call\_\_ {#call tag="method"}
2020-07-04 15:23:10 +03:00
2020-08-05 21:29:53 +03:00
Yield examples from the data.
2020-07-04 15:23:10 +03:00
2020-07-29 12:36:42 +03:00
> #### Example
>
> ```python
> from spacy.training import Corpus
2020-07-29 12:36:42 +03:00
> import spacy
>
2020-08-05 21:29:53 +03:00
> corpus = Corpus("./train.spacy")
2020-07-29 12:36:42 +03:00
> nlp = spacy.blank("en")
2020-08-05 21:29:53 +03:00
> train_data = corpus(nlp)
2020-07-29 12:36:42 +03:00
> ```
2020-08-17 17:45:24 +03:00
| Name | Description |
| ---------- | -------------------------------------- |
| `nlp` | The current `nlp` object. ~~Language~~ |
| **YIELDS** | The examples. ~~Example~~ |
2020-09-15 01:32:49 +03:00
2020-10-02 02:36:06 +03:00
## JsonlCorpus {#jsonlcorpus tag="class"}
2020-09-15 01:32:49 +03:00
Iterate Doc objects from a file or directory of JSONL (newline-delimited JSON)
formatted raw text files. Can be used to read the raw text corpus for language
model [pretraining](/usage/embeddings-transformers#pretraining) from a JSONL
file.
> #### Tip: Writing JSONL
>
> Our utility library [`srsly`](https://github.com/explosion/srsly) provides a
> handy `write_jsonl` helper that takes a file path and list of dictionaries and
> writes out JSONL-formatted data.
>
> ```python
> import srsly
> data = [{"text": "Some text"}, {"text": "More..."}]
> srsly.write_jsonl("/path/to/text.jsonl", data)
> ```
```json
### Example
{"text": "Can I ask where you work now and what you do, and if you enjoy it?"}
{"text": "They may just pull out of the Seattle market completely, at least until they have autonomous vehicles."}
{"text": "My cynical view on this is that it will never be free to the public. Reason: what would be the draw of joining the military? Right now their selling point is free Healthcare and Education. Ironically both are run horribly and most, that I've talked to, come out wishing they never went in."}
```
2020-10-02 02:36:06 +03:00
### JsonlCorpus.\_\init\_\_ {#jsonlcorpus tag="method"}
2020-09-15 01:32:49 +03:00
Initialize the reader.
> #### Example
>
> ```python
2020-10-02 02:36:06 +03:00
> from spacy.training import JsonlCorpus
2020-09-15 01:32:49 +03:00
>
2020-10-02 02:36:06 +03:00
> corpus = JsonlCorpus("./data/texts.jsonl")
2020-09-15 01:32:49 +03:00
> ```
>
> ```ini
> ### Example config
> [corpora.pretrain]
2020-10-02 02:36:06 +03:00
> @readers = "spacy.JsonlCorpus.v1"
2020-09-15 01:32:49 +03:00
> path = "corpus/raw_text.jsonl"
> min_length = 0
> max_length = 0
> limit = 0
> ```
| Name | Description |
| -------------- | -------------------------------------------------------------------------------------------------------------------------------- |
| `path` | The directory or filename to read from. Expects newline-delimited JSON with a key `"text"` for each record. ~~Union[str, Path]~~ |
| _keyword-only_ | |
| `min_length` | Minimum document length (in tokens). Shorter documents will be skipped. Defaults to `0`, which indicates no limit. ~~int~~ |
| `max_length` | Maximum document length (in tokens). Longer documents will be skipped. Defaults to `0`, which indicates no limit. ~~int~~ |
| `limit` | Limit corpus to a subset of examples, e.g. for debugging. Defaults to `0` for no limit. ~~int~~ |
2020-10-02 02:36:06 +03:00
### JsonlCorpus.\_\_call\_\_ {#jsonlcorpus-call tag="method"}
2020-09-15 01:32:49 +03:00
Yield examples from the data.
> #### Example
>
> ```python
2020-10-02 02:36:06 +03:00
> from spacy.training import JsonlCorpus
2020-09-15 01:32:49 +03:00
> import spacy
>
2020-10-02 02:36:06 +03:00
> corpus = JsonlCorpus("./texts.jsonl")
2020-09-15 01:32:49 +03:00
> nlp = spacy.blank("en")
> data = corpus(nlp)
> ```
| Name | Description |
| ---------- | -------------------------------------- |
| `nlp` | The current `nlp` object. ~~Language~~ |
| **YIELDS** | The examples. ~~Example~~ |