mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-27 09:44:36 +03:00
Add commit to tagger example
This commit is contained in:
parent
3fef5f642b
commit
a405660068
|
@ -24,8 +24,8 @@ For more details, see the documentation:
|
||||||
* Training the Named Entity Recognizer: https://spacy.io/docs/usage/train-ner
|
* Training the Named Entity Recognizer: https://spacy.io/docs/usage/train-ner
|
||||||
* Saving and loading models: https://spacy.io/docs/usage/saving-loading
|
* Saving and loading models: https://spacy.io/docs/usage/saving-loading
|
||||||
|
|
||||||
Developed for: spaCy 1.7.6
|
Developed for: spaCy 1.9.0
|
||||||
Last tested for: spaCy 1.7.6
|
Last tested for: spaCy 1.9.0
|
||||||
"""
|
"""
|
||||||
from __future__ import unicode_literals, print_function
|
from __future__ import unicode_literals, print_function
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,17 @@
|
||||||
|
'''
|
||||||
|
This example shows training of the POS tagger without the Language class,
|
||||||
|
showing the APIs of the atomic components.
|
||||||
|
|
||||||
|
This example was adapted from the gist here:
|
||||||
|
|
||||||
|
https://gist.github.com/kamac/a7bc139f62488839a8118214a4d932f2
|
||||||
|
|
||||||
|
Issue discussing the gist:
|
||||||
|
|
||||||
|
https://github.com/explosion/spaCy/issues/1179
|
||||||
|
|
||||||
|
The example was written for spaCy 1.8.2.
|
||||||
|
'''
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user