mirror of https://github.com/explosion/spaCy.git
Update POS in tagging example
This commit is contained in:
parent
457babfa0c
commit
9aff317ca7
|
@ -36,7 +36,7 @@ for token in doc:
|
||||||
| Text | Lemma | POS | Tag | Dep | Shape | alpha | stop |
|
| Text | Lemma | POS | Tag | Dep | Shape | alpha | stop |
|
||||||
| ------- | ------- | ------- | ----- | ---------- | ------- | ------- | ------- |
|
| ------- | ------- | ------- | ----- | ---------- | ------- | ------- | ------- |
|
||||||
| Apple | apple | `PROPN` | `NNP` | `nsubj` | `Xxxxx` | `True` | `False` |
|
| Apple | apple | `PROPN` | `NNP` | `nsubj` | `Xxxxx` | `True` | `False` |
|
||||||
| is | be | `VERB` | `VBZ` | `aux` | `xx` | `True` | `True` |
|
| is | be | `AUX` | `VBZ` | `aux` | `xx` | `True` | `True` |
|
||||||
| looking | look | `VERB` | `VBG` | `ROOT` | `xxxx` | `True` | `False` |
|
| looking | look | `VERB` | `VBG` | `ROOT` | `xxxx` | `True` | `False` |
|
||||||
| at | at | `ADP` | `IN` | `prep` | `xx` | `True` | `True` |
|
| at | at | `ADP` | `IN` | `prep` | `xx` | `True` | `True` |
|
||||||
| buying | buy | `VERB` | `VBG` | `pcomp` | `xxxx` | `True` | `False` |
|
| buying | buy | `VERB` | `VBG` | `pcomp` | `xxxx` | `True` | `False` |
|
||||||
|
|
Loading…
Reference in New Issue