Small fix

Signed-off-by: Avadh Patel <avadh4all@gmail.com>
This commit is contained in:
Avadh Patel 2018-01-21 15:20:45 -06:00
parent 5b5029890d
commit a517df55c8
1 changed files with 1 additions and 1 deletions

View File

@ -887,7 +887,7 @@ cdef class Parser:
path = util.ensure_path(path)
if self.model is True:
self.cfg['pretrained_dims'] = self.vocab.vectors_length
self.model, cfg = self.Model(from_disk=True, **self.cfg)
self.model, cfg = self.Model(**self.cfg)
else:
cfg = {}
with (path / 'tok2vec_model').open('rb') as file_: