mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-25 17:36:30 +03:00
* Support gzipped frequencies in init_model
This commit is contained in:
parent
62da5eb338
commit
0368889d6c
|
@ -19,6 +19,7 @@ from __future__ import unicode_literals
|
|||
|
||||
from ast import literal_eval
|
||||
import math
|
||||
import gzip
|
||||
|
||||
import plac
|
||||
from pathlib import Path
|
||||
|
@ -78,7 +79,7 @@ def _read_clusters(loc):
|
|||
|
||||
def _read_probs(loc):
|
||||
if not loc.exists():
|
||||
print("Warning: Probabilities file not found")
|
||||
print("Probabilities file not found. Trying freqs.")
|
||||
return {}, 0.0
|
||||
probs = {}
|
||||
for i, line in enumerate(codecs.open(str(loc), 'r', 'utf8')):
|
||||
|
@ -94,7 +95,11 @@ def _read_freqs(loc, max_length=100, min_doc_freq=5, min_freq=100):
|
|||
return {}, 0.0
|
||||
counts = PreshCounter()
|
||||
total = 0
|
||||
for i, line in enumerate(loc.open()):
|
||||
if str(loc).endswith('gz'):
|
||||
file_ = gzip.open(str(loc))
|
||||
else:
|
||||
file_ = loc.open()
|
||||
for i, line in enumerate(file_):
|
||||
freq, doc_freq, key = line.split('\t', 2)
|
||||
freq = int(freq)
|
||||
counts.inc(i+1, freq)
|
||||
|
|
Loading…
Reference in New Issue
Block a user