update to training doc

This commit is contained in:
aikramer2 2016-12-20 12:01:16 -08:00
parent f3c61ae246
commit 349143faa2

View File

@ -13,14 +13,17 @@ p
+code.
from spacy.vocab import Vocab
from spacy.pipeline import Tagger
from spacy.tagger import Tagger
from spacy.tokens import Doc
from spacy.gold import GoldParse
vocab = Vocab(tag_map={'N': {'pos': 'NOUN'}, 'V': {'pos': 'VERB'}})
tagger = Tagger(vocab)
doc = Doc(vocab, words=['I', 'like', 'stuff'])
tagger.update(doc, ['N', 'V', 'N'])
gold = GoldParse(doc, tags=['N', 'V', 'N'])
tagger.update(doc, gold)
tagger.model.end_training()