mirror of https://github.com/explosion/spaCy.git
* Fix test_basic_create
This commit is contained in:
parent
1d3884c46d
commit
06f26d258e
|
@ -63,7 +63,7 @@ class TestTagger(unittest.TestCase):
|
||||||
def test_create(self):
|
def test_create(self):
|
||||||
vocab = Vocab()
|
vocab = Vocab()
|
||||||
templates = ((1,),)
|
templates = ((1,),)
|
||||||
model = TaggerModel(vocab.morphology.n_tags, templates, model_loc=None)
|
model = TaggerModel(vocab.morphology.n_tags, templates)
|
||||||
tagger = Tagger(vocab, model)
|
tagger = Tagger(vocab, model)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue