Update architectures

This commit is contained in:
Matthew Honnibal 2020-08-21 15:34:54 +02:00
parent 7ed8f4504b
commit f5bcc10268
1 changed files with 3 additions and 3 deletions

View File

@ -315,9 +315,9 @@ to pass in a `get_spans` function that will divide up the `Doc` objects before
passing them through the transformer. Your spans are allowed to overlap or passing them through the transformer. Your spans are allowed to overlap or
exclude tokens. exclude tokens.
This layer outputs a `FullTransformerBatch` dataclass. In order to plug the This layer is usually used directly by the `Transformer` component, which
layer into most architectures, you'll probably need to map the raw transformer allows you to share the transformer weights across your pipeline. For a layer
output to token-aligned vectors using a layer such as `trfs2arrays`. that's configured for use in other components, see `Tok2VecTransformer`.
| Name | Description | | Name | Description |