mirror of https://github.com/explosion/spaCy.git
Fix default of serializer_freqs
This commit is contained in:
parent
1b651db9c5
commit
2bbb050500
|
@ -50,7 +50,7 @@ cdef class Vocab:
|
||||||
'''
|
'''
|
||||||
@classmethod
|
@classmethod
|
||||||
def load(cls, path, lex_attr_getters=None, vectors=True, lemmatizer=True,
|
def load(cls, path, lex_attr_getters=None, vectors=True, lemmatizer=True,
|
||||||
tag_map=True, serializer_freqs=None, **deprecated_kwargs):
|
tag_map=True, serializer_freqs=True, **deprecated_kwargs):
|
||||||
util.check_renamed_kwargs({'get_lex_attr': 'lex_attr_getters'}, deprecated_kwargs)
|
util.check_renamed_kwargs({'get_lex_attr': 'lex_attr_getters'}, deprecated_kwargs)
|
||||||
if tag_map is True and (path / 'vocab' / 'tag_map.json').exists():
|
if tag_map is True and (path / 'vocab' / 'tag_map.json').exists():
|
||||||
with (path / 'vocab' / 'tag_map.json').open() as file_:
|
with (path / 'vocab' / 'tag_map.json').open() as file_:
|
||||||
|
|
Loading…
Reference in New Issue