Fix tagger loading

This commit is contained in:
Matthew Honnibal 2017-07-25 19:41:11 +02:00
parent fd20a4af55
commit 6780132821

View File

@ -417,7 +417,7 @@ class NeuralTagger(BaseThincComponent):
('vocab', lambda p: self.vocab.from_disk(p)),
('tag_map', load_tag_map),
('model', load_model),
('cfg', lambda p: self.cfg.update(ujson.load(p.open()))),
('cfg', lambda p: self.cfg.update(_load_cfg(p)))
))
util.from_disk(path, deserialize, exclude)
return self