2020-08-21 14:11:38 +00:00
|
|
|
|
---
|
|
|
|
|
title: Layers and Model Architectures
|
|
|
|
|
teaser: Power spaCy components with custom neural networks
|
|
|
|
|
menu:
|
|
|
|
|
- ['Type Signatures', 'type-sigs']
|
2020-09-02 11:04:35 +00:00
|
|
|
|
- ['Swapping Architectures', 'swap-architectures']
|
2020-08-21 14:11:38 +00:00
|
|
|
|
- ['PyTorch & TensorFlow', 'frameworks']
|
2020-09-02 11:04:35 +00:00
|
|
|
|
- ['Thinc Models', 'thinc']
|
2020-08-21 14:11:38 +00:00
|
|
|
|
- ['Trainable Components', 'components']
|
2020-08-21 14:21:55 +00:00
|
|
|
|
next: /usage/projects
|
2020-08-21 14:11:38 +00:00
|
|
|
|
---
|
|
|
|
|
|
2020-09-02 11:41:18 +00:00
|
|
|
|
> #### Example
|
|
|
|
|
>
|
|
|
|
|
> ````python
|
|
|
|
|
> from thinc.api import Model, chain
|
2020-09-02 12:15:50 +00:00
|
|
|
|
>
|
|
|
|
|
> @spacy.registry.architectures.register("model.v1")
|
2020-09-02 11:41:18 +00:00
|
|
|
|
> def build_model(width: int, classes: int) -> Model:
|
|
|
|
|
> tok2vec = build_tok2vec(width)
|
|
|
|
|
> output_layer = build_output_layer(width, classes)
|
|
|
|
|
> model = chain(tok2vec, output_layer)
|
|
|
|
|
> return model
|
|
|
|
|
> ````
|
|
|
|
|
|
|
|
|
|
A **model architecture** is a function that wires up a
|
|
|
|
|
[Thinc `Model`](https://thinc.ai/docs/api-model) instance. It describes the
|
2020-09-02 12:15:50 +00:00
|
|
|
|
neural network that is run internally as part of a component in a spaCy pipeline.
|
|
|
|
|
To define the actual architecture, you can implement your logic in
|
|
|
|
|
Thinc directly, or you can use Thinc as a thin wrapper around frameworks
|
|
|
|
|
such as PyTorch, TensorFlow and MXNet. Each Model can also be used as a sublayer
|
|
|
|
|
of a larger network, allowing you to freely combine implementations from different
|
|
|
|
|
frameworks into one `Thinc` Model.
|
2020-09-02 11:41:18 +00:00
|
|
|
|
|
|
|
|
|
spaCy's built-in components require a `Model` instance to be passed to them via
|
|
|
|
|
the config system. To change the model architecture of an existing component,
|
|
|
|
|
you just need to **update the config** so that it refers to a different
|
|
|
|
|
registered function. Once the component has been created from this config, you
|
|
|
|
|
won't be able to change it anymore. The architecture is like a recipe for the
|
|
|
|
|
network, and you can't change the recipe once the dish has already been
|
|
|
|
|
prepared. You have to make a new one.
|
2020-08-21 14:11:38 +00:00
|
|
|
|
|
2020-09-02 12:15:50 +00:00
|
|
|
|
```ini
|
|
|
|
|
### config.cfg (excerpt)
|
|
|
|
|
[components.tagger]
|
|
|
|
|
factory = "tagger"
|
|
|
|
|
|
|
|
|
|
[components.tagger.model]
|
|
|
|
|
@architectures = "model.v1"
|
|
|
|
|
width = 512
|
|
|
|
|
classes = 16
|
|
|
|
|
```
|
|
|
|
|
|
2020-08-21 14:11:38 +00:00
|
|
|
|
## Type signatures {#type-sigs}
|
|
|
|
|
|
2020-08-21 17:34:06 +00:00
|
|
|
|
<!-- TODO: update example, maybe simplify definition? -->
|
|
|
|
|
|
|
|
|
|
> #### Example
|
|
|
|
|
>
|
|
|
|
|
> ```python
|
2020-09-02 12:15:50 +00:00
|
|
|
|
> from typing import List
|
|
|
|
|
> from thinc.api import Model, chain
|
|
|
|
|
> from thinc.types import Floats2d
|
|
|
|
|
> def chain_model(
|
|
|
|
|
> tok2vec: Model[List[Doc], List[Floats2d]],
|
|
|
|
|
> layer1: Model[List[Floats2d], Floats2d],
|
|
|
|
|
> layer2: Model[Floats2d, Floats2d]
|
|
|
|
|
> ) -> Model[List[Doc], Floats2d]:
|
|
|
|
|
> model = chain(tok2vec, layer1, layer2)
|
2020-08-21 17:34:06 +00:00
|
|
|
|
> return model
|
|
|
|
|
> ```
|
|
|
|
|
|
2020-09-02 12:25:18 +00:00
|
|
|
|
The Thinc `Model` class is a **generic type** that can specify its input and
|
2020-08-21 14:11:38 +00:00
|
|
|
|
output types. Python uses a square-bracket notation for this, so the type
|
|
|
|
|
~~Model[List, Dict]~~ says that each batch of inputs to the model will be a
|
2020-09-02 12:25:18 +00:00
|
|
|
|
list, and the outputs will be a dictionary. You can be even more specific and
|
|
|
|
|
write for instance~~Model[List[Doc], Dict[str, float]]~~ to specify that
|
2020-08-21 14:11:38 +00:00
|
|
|
|
the model expects a list of [`Doc`](/api/doc) objects as input, and returns a
|
2020-09-02 12:15:50 +00:00
|
|
|
|
dictionary mapping of strings to floats. Some of the most common types you'll see
|
2020-08-21 14:11:38 +00:00
|
|
|
|
are:
|
|
|
|
|
|
|
|
|
|
| Type | Description |
|
|
|
|
|
| ------------------ | ---------------------------------------------------------------------------------------------------- |
|
|
|
|
|
| ~~List[Doc]~~ | A batch of [`Doc`](/api/doc) objects. Most components expect their models to take this as input. |
|
|
|
|
|
| ~~Floats2d~~ | A two-dimensional `numpy` or `cupy` array of floats. Usually 32-bit. |
|
|
|
|
|
| ~~Ints2d~~ | A two-dimensional `numpy` or `cupy` array of integers. Common dtypes include uint64, int32 and int8. |
|
|
|
|
|
| ~~List[Floats2d]~~ | A list of two-dimensional arrays, generally with one array per `Doc` and one row per token. |
|
|
|
|
|
| ~~Ragged~~ | A container to handle variable-length sequence data in an unpadded contiguous array. |
|
2020-09-02 08:46:38 +00:00
|
|
|
|
| ~~Padded~~ | A container to handle variable-length sequence data in a padded contiguous array. |
|
2020-08-21 14:11:38 +00:00
|
|
|
|
|
2020-08-21 17:34:06 +00:00
|
|
|
|
The model type signatures help you figure out which model architectures and
|
|
|
|
|
components can **fit together**. For instance, the
|
2020-08-21 14:21:55 +00:00
|
|
|
|
[`TextCategorizer`](/api/textcategorizer) class expects a model typed
|
2020-08-21 14:11:38 +00:00
|
|
|
|
~~Model[List[Doc], Floats2d]~~, because the model will predict one row of
|
2020-08-21 17:34:06 +00:00
|
|
|
|
category probabilities per [`Doc`](/api/doc). In contrast, the
|
|
|
|
|
[`Tagger`](/api/tagger) class expects a model typed ~~Model[List[Doc],
|
|
|
|
|
List[Floats2d]]~~, because it needs to predict one row of probabilities per
|
|
|
|
|
token.
|
|
|
|
|
|
|
|
|
|
There's no guarantee that two models with the same type signature can be used
|
|
|
|
|
interchangeably. There are many other ways they could be incompatible. However,
|
|
|
|
|
if the types don't match, they almost surely _won't_ be compatible. This little
|
|
|
|
|
bit of validation goes a long way, especially if you
|
|
|
|
|
[configure your editor](https://thinc.ai/docs/usage-type-checking) or other
|
2020-09-02 12:25:18 +00:00
|
|
|
|
tools to highlight these errors early. The config file is also validated
|
|
|
|
|
at the beginning of training, to verify that all the types match correctly.
|
2020-08-21 14:11:38 +00:00
|
|
|
|
|
2020-08-21 18:02:18 +00:00
|
|
|
|
<Infobox title="Tip: Static type checking in your editor" emoji="💡">
|
|
|
|
|
|
|
|
|
|
If you're using a modern editor like Visual Studio Code, you can
|
|
|
|
|
[set up `mypy`](https://thinc.ai/docs/usage-type-checking#install) with the
|
|
|
|
|
custom Thinc plugin and get live feedback about mismatched types as you write
|
|
|
|
|
code.
|
|
|
|
|
|
|
|
|
|
[![](../images/thinc_mypy.jpg)](https://thinc.ai/docs/usage-type-checking#linting)
|
|
|
|
|
|
|
|
|
|
</Infobox>
|
|
|
|
|
|
2020-09-02 11:04:35 +00:00
|
|
|
|
## Swapping model architectures {#swap-architectures}
|
|
|
|
|
|
|
|
|
|
<!-- TODO: textcat example, using different architecture in the config -->
|
|
|
|
|
|
|
|
|
|
### Defining sublayers {#sublayers}
|
2020-08-21 14:11:38 +00:00
|
|
|
|
|
2020-09-02 11:04:35 +00:00
|
|
|
|
Model architecture functions often accept **sublayers as arguments**, so that
|
2020-08-21 17:34:06 +00:00
|
|
|
|
you can try **substituting a different layer** into the network. Depending on
|
|
|
|
|
how the architecture function is structured, you might be able to define your
|
|
|
|
|
network structure entirely through the [config system](/usage/training#config),
|
|
|
|
|
using layers that have already been defined. The
|
2020-08-21 14:11:38 +00:00
|
|
|
|
[transformers documentation](/usage/embeddings-transformers#transformers)
|
2020-08-21 17:34:06 +00:00
|
|
|
|
section shows a common example of swapping in a different sublayer.
|
|
|
|
|
|
|
|
|
|
In most neural network models for NLP, the most important parts of the network
|
|
|
|
|
are what we refer to as the
|
2020-08-21 14:11:38 +00:00
|
|
|
|
[embed and encode](https://explosion.ai/blog/embed-encode-attend-predict) steps.
|
|
|
|
|
These steps together compute dense, context-sensitive representations of the
|
2020-08-21 17:34:06 +00:00
|
|
|
|
tokens. Most of spaCy's default architectures accept a
|
|
|
|
|
[`tok2vec` embedding layer](/api/architectures#tok2vec-arch) as an argument, so
|
|
|
|
|
you can control this important part of the network separately. This makes it
|
|
|
|
|
easy to **switch between** transformer, CNN, BiLSTM or other feature extraction
|
|
|
|
|
approaches. And if you want to define your own solution, all you need to do is
|
|
|
|
|
register a ~~Model[List[Doc], List[Floats2d]]~~ architecture function, and
|
2020-09-02 08:46:38 +00:00
|
|
|
|
you'll be able to try it out in any of the spaCy components.
|
2020-08-21 17:34:06 +00:00
|
|
|
|
|
2020-09-02 11:04:35 +00:00
|
|
|
|
<!-- TODO: example of swapping sublayers -->
|
2020-08-21 14:11:38 +00:00
|
|
|
|
|
2020-09-02 11:04:35 +00:00
|
|
|
|
## Wrapping PyTorch, TensorFlow and other frameworks {#frameworks}
|
2020-08-21 14:11:38 +00:00
|
|
|
|
|
2020-09-02 11:04:35 +00:00
|
|
|
|
Thinc allows you to [wrap models](https://thinc.ai/docs/usage-frameworks)
|
|
|
|
|
written in other machine learning frameworks like PyTorch, TensorFlow and MXNet
|
|
|
|
|
using a unified [`Model`](https://thinc.ai/docs/api-model) API. As well as
|
|
|
|
|
**wrapping whole models**, Thinc lets you call into an external framework for
|
|
|
|
|
just **part of your model**: you can have a model where you use PyTorch just for
|
|
|
|
|
the transformer layers, using "native" Thinc layers to do fiddly input and
|
|
|
|
|
output transformations and add on task-specific "heads", as efficiency is less
|
|
|
|
|
of a consideration for those parts of the network.
|
2020-08-21 14:11:38 +00:00
|
|
|
|
|
2020-09-02 11:04:35 +00:00
|
|
|
|
<!-- TODO: custom tagger implemented in PyTorch, wrapped as Thinc model, link off to project (with notebook?) -->
|
2020-08-21 14:11:38 +00:00
|
|
|
|
|
2020-09-02 11:04:35 +00:00
|
|
|
|
## Implementing models in Thinc {#thinc}
|
2020-08-21 18:02:18 +00:00
|
|
|
|
|
2020-09-02 11:04:35 +00:00
|
|
|
|
<!-- TODO: use same example as above, custom tagger, but implemented in Thinc, link off to Thinc docs where appropriate -->
|
2020-08-21 14:11:38 +00:00
|
|
|
|
|
|
|
|
|
## Models for trainable components {#components}
|
|
|
|
|
|
2020-09-02 11:04:35 +00:00
|
|
|
|
<!-- TODO:
|
|
|
|
|
|
2020-08-21 14:11:38 +00:00
|
|
|
|
- Interaction with `predict`, `get_loss` and `set_annotations`
|
|
|
|
|
- Initialization life-cycle with `begin_training`.
|
2020-09-02 11:04:35 +00:00
|
|
|
|
|
|
|
|
|
Example: relation extraction component (implemented as project template)
|
|
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
![Diagram of a pipeline component with its model](../images/layers-architectures.svg)
|
2020-08-22 15:15:05 +00:00
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
def update(self, examples):
|
|
|
|
|
docs = [ex.predicted for ex in examples]
|
|
|
|
|
refs = [ex.reference for ex in examples]
|
|
|
|
|
predictions, backprop = self.model.begin_update(docs)
|
|
|
|
|
gradient = self.get_loss(predictions, refs)
|
|
|
|
|
backprop(gradient)
|
|
|
|
|
|
|
|
|
|
def __call__(self, doc):
|
|
|
|
|
predictions = self.model([doc])
|
|
|
|
|
self.set_annotations(predictions)
|
|
|
|
|
```
|