Fix default of serializer_freqs

This commit is contained in:
Matthew Honnibal 2016-10-18 19:55:41 +02:00
parent 1b651db9c5
commit 2bbb050500
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ cdef class Vocab:
'''
@classmethod
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)
if tag_map is True and (path / 'vocab' / 'tag_map.json').exists():
with (path / 'vocab' / 'tag_map.json').open() as file_: