Merge pull request #698 from aikramer2/master

update to training doc
This commit is contained in:
Matthew Honnibal 2016-12-21 07:46:51 +11:00 committed by GitHub
commit 6aed94a3b9
1 changed files with 5 additions and 2 deletions

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()