mirror of https://github.com/explosion/spaCy.git
Remove tag map sidebar
This commit is contained in:
parent
568768643e
commit
3908fff899
|
@ -1124,17 +1124,6 @@ a dictionary with keyword arguments specifying the annotations, like `tags` or
|
||||||
annotations, the model can be updated to learn a sentence of three words with
|
annotations, the model can be updated to learn a sentence of three words with
|
||||||
their assigned part-of-speech tags.
|
their assigned part-of-speech tags.
|
||||||
|
|
||||||
> #### About the tag map
|
|
||||||
>
|
|
||||||
> The tag map is part of the vocabulary and defines the annotation scheme. If
|
|
||||||
> you're training a new pipeline, this will let you map the tags present in the
|
|
||||||
> treebank you train on to spaCy's tag scheme:
|
|
||||||
>
|
|
||||||
> ```python
|
|
||||||
> tag_map = {"N": {"pos": "NOUN"}, "V": {"pos": "VERB"}}
|
|
||||||
> vocab = Vocab(tag_map=tag_map)
|
|
||||||
> ```
|
|
||||||
|
|
||||||
```python
|
```python
|
||||||
words = ["I", "like", "stuff"]
|
words = ["I", "like", "stuff"]
|
||||||
tags = ["NOUN", "VERB", "NOUN"]
|
tags = ["NOUN", "VERB", "NOUN"]
|
||||||
|
|
Loading…
Reference in New Issue