* Update default freq thresholds in init_model

This commit is contained in:
Matthew Honnibal 2015-07-26 01:41:17 +02:00
parent 6c01e01f12
commit 90ad717dc4
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ def _read_probs(loc):
return probs, probs['-OOV-']
def _read_freqs(loc, max_length=100, min_doc_freq=5, min_freq=10):
def _read_freqs(loc, max_length=100, min_doc_freq=5, min_freq=100):
if not loc.exists():
print("Warning: Frequencies file not found")
return None