mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +03:00
parent
925a852bb6
commit
8718ca8b1f
|
@ -24,6 +24,7 @@ except ImportError:
|
||||||
ftfy = None
|
ftfy = None
|
||||||
|
|
||||||
|
|
||||||
|
DEFAULT_OOV_PROB = -20
|
||||||
msg = Printer()
|
msg = Printer()
|
||||||
|
|
||||||
|
|
||||||
|
@ -108,14 +109,21 @@ def open_file(loc):
|
||||||
|
|
||||||
|
|
||||||
def read_attrs_from_deprecated(freqs_loc, clusters_loc):
|
def read_attrs_from_deprecated(freqs_loc, clusters_loc):
|
||||||
|
if freqs_loc is not None:
|
||||||
with msg.loading("Counting frequencies..."):
|
with msg.loading("Counting frequencies..."):
|
||||||
probs, oov_prob = read_freqs(freqs_loc) if freqs_loc is not None else ({}, -20)
|
probs, _ = read_freqs(freqs_loc)
|
||||||
msg.good("Counted frequencies")
|
msg.good("Counted frequencies")
|
||||||
|
else:
|
||||||
|
probs, _ = ({}, DEFAULT_OOV_PROB)
|
||||||
|
if clusters_loc:
|
||||||
with msg.loading("Reading clusters..."):
|
with msg.loading("Reading clusters..."):
|
||||||
clusters = read_clusters(clusters_loc) if clusters_loc else {}
|
clusters = read_clusters(clusters_loc)
|
||||||
msg.good("Read clusters")
|
msg.good("Read clusters")
|
||||||
|
else:
|
||||||
|
clusters = {}
|
||||||
lex_attrs = []
|
lex_attrs = []
|
||||||
sorted_probs = sorted(probs.items(), key=lambda item: item[1], reverse=True)
|
sorted_probs = sorted(probs.items(), key=lambda item: item[1], reverse=True)
|
||||||
|
if len(sorted_probs):
|
||||||
for i, (word, prob) in tqdm(enumerate(sorted_probs)):
|
for i, (word, prob) in tqdm(enumerate(sorted_probs)):
|
||||||
attrs = {"orth": word, "id": i, "prob": prob}
|
attrs = {"orth": word, "id": i, "prob": prob}
|
||||||
# Decode as a little-endian string, so that we can do & 15 to get
|
# Decode as a little-endian string, so that we can do & 15 to get
|
||||||
|
@ -142,8 +150,11 @@ def create_model(lang, lex_attrs):
|
||||||
lexeme.is_oov = False
|
lexeme.is_oov = False
|
||||||
lex_added += 1
|
lex_added += 1
|
||||||
lex_added += 1
|
lex_added += 1
|
||||||
oov_prob = min(lex.prob for lex in nlp.vocab)
|
if len(nlp.vocab):
|
||||||
nlp.vocab.cfg.update({"oov_prob": oov_prob - 1})
|
oov_prob = min(lex.prob for lex in nlp.vocab) - 1
|
||||||
|
else:
|
||||||
|
oov_prob = DEFAULT_OOV_PROB
|
||||||
|
nlp.vocab.cfg.update({"oov_prob": oov_prob})
|
||||||
return nlp
|
return nlp
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user